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
fetch_on_demand_gemm_no_fusion have wrong numBlocks in Y dim. Thus there is unnecessary Block execution.
cur_nnz is divided by 16(BLOCK_SIZE)
fetch_on_demand_gemm_no_fusion_fp32_1<16, 4, 8> <<<dim3(DIV_UP(out_channel, 16), DIV_UP(cur_nnz, 16), 1), dim3(16, 16, 1)>>>
it must be divided by (16(BLOCK_SIZE)*4(N_LOOP)) to be correct numBlocks in Y dim
fetch_on_demand_gemm_no_fusion_fp32_1<16, 4, 8> <<<dim3(DIV_UP(out_channel, 16), DIV_UP(cur_nnz, 16 * N_LOOP), 1), dim3(16, 16, 1)>>>
- GCC: - NVCC: - PyTorch: - PyTorch CUDA: - TorchSparse:
We can't make a bugfix PR?
The text was updated successfully, but these errors were encountered:
ys-2020
No branches or pull requests
Is there an existing issue for this?
Current Behavior
fetch_on_demand_gemm_no_fusion have wrong numBlocks in Y dim.
Thus there is unnecessary Block execution.
cur_nnz is divided by 16(BLOCK_SIZE)
Expected Behavior
it must be divided by (16(BLOCK_SIZE)*4(N_LOOP)) to be correct numBlocks in Y dim
Environment
Anything else?
We can't make a bugfix PR?
The text was updated successfully, but these errors were encountered: