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
The names set by Numba-dppy for kernels generated from parfors are extremely long and make it impossible to determine what parfor they represent in the source code. Having easily distinguishable kernel names is extremely useful performance analysis of programs that have multiple kernels.
For easily distinguishable kernel names, I suggest the following protocol.
<file_name:function_name:line_number>
This combination is going to be unique for each kernel. If a parfor is called from outside a function, then it can be omitted and the combination of file_name and line_number (<file_name:line_number>) will still be unique.
The text was updated successfully, but these errors were encountered:
The names set by Numba-dppy for kernels generated from parfors are extremely long and make it impossible to determine what parfor they represent in the source code. Having easily distinguishable kernel names is extremely useful performance analysis of programs that have multiple kernels.
For easily distinguishable kernel names, I suggest the following protocol.
<file_name:function_name:line_number>
This combination is going to be unique for each kernel. If a parfor is called from outside a function, then it can be omitted and the combination of file_name and line_number (<file_name:line_number>) will still be unique.
The text was updated successfully, but these errors were encountered: