We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In many cases we generate SDFGs with symbol assignments where they could be dynamic map ranges.
Example:
@dace.program def spmv(A_row: dace.uint32[H + 1], A_col: dace.uint32[nnz], A_val: dace.float32[nnz], x: dace.float32[W]): b = np.zeros([H], dtype=np.float32) for i in dace.map[0:H]: begin = A_row[i] end = A_row[i + 1] for j in dace.map[begin:end]: b[i] += A_val[j] * x[A_col[j]] return b
We should make a pass or transformation to "demote" certain symbol assignments to the tasklets or maps as necessary.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In many cases we generate SDFGs with symbol assignments where they could be dynamic map ranges.
Example:
We should make a pass or transformation to "demote" certain symbol assignments to the tasklets or maps as necessary.
The text was updated successfully, but these errors were encountered: