Skip to content
Snippets Groups Projects
Commit 166bbe68 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Added comment to Adaptive CSR kernel about finetunning of CUDA block size...

Added comment to Adaptive CSR kernel about finetunning of CUDA block size depending on the size of Value type.
parent 9c559180
No related branches found
No related tags found
1 merge request!89To/matrices adaptive csr
......@@ -15,6 +15,8 @@ namespace TNL {
namespace Segments {
namespace details {
// This can be used for tunning the number of CUDA threads per block depending on the size of Value
// TODO: Perform some tests
static constexpr int CSRAdaptiveKernelParametersCudaBlockSizes[] = { 256, 256, 256, 256, 256, 256 };
template< int SizeOfValue = 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment