You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First part of transformation (transformation of declarations with external linkage and shared attribute for IncompleteArrayType) has already done. Second part - all assignments of such "extern" var should be transformed as well.
sRadix2 can't be of type uint* after hipifying. It should be of type __attribute__((address_space(3))) uint* due to the changed type of sRadix1:
There might be more complicated situations when this "extern" var is used as a function argument (It is a 3rd part - to be investigated, example is needed).
The text was updated successfully, but these errors were encountered:
(Part 2) Transformations are needed in cases of further possible assignments of already transfomed "extern" variable. Example:
First part of transformation (transformation of declarations with external linkage and shared attribute for IncompleteArrayType) has already done. Second part - all assignments of such "extern" var should be transformed as well.
sRadix2 can't be of type
uint*
after hipifying. It should be of type__attribute__((address_space(3))) uint*
due to the changed type of sRadix1:There might be more complicated situations when this "extern" var is used as a function argument (It is a 3rd part - to be investigated, example is needed).
The text was updated successfully, but these errors were encountered: