Skip to content

Commit

Permalink
tidy - suppress spurious warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylt committed Nov 10, 2021
1 parent 23dfbf5 commit 56a9a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/cuda/ceed-cuda.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ int CeedRunKernelCuda(Ceed ceed, CUfunction kernel, const int gridSize,
return CeedError(ceed, CEED_ERROR_BACKEND,
"CUDA_ERROR_LAUNCH_OUT_OF_RESOURCES: max_threads_per_block %d on block size (%d,%d,%d), shared_size %d, num_regs %d",
max_threads_per_block, blockSize, 1, 1, shared_size_bytes, num_regs);
} else CeedChk_Cu(ceed, result);
} else CeedChk_Cu(ceed, result); // NOLINT
return CEED_ERROR_SUCCESS;
}

Expand Down

0 comments on commit 56a9a76

Please sign in to comment.