Commit efceb6ed authored by Yuxi Chi's avatar Yuxi Chi Committed by LeiWang1999
Browse files

[Enhancement][CUDA] Avoid C7508 for CUDA backend via assigning default value...

[Enhancement][CUDA] Avoid C7508 for CUDA backend via assigning default value to `minBlocksPerMultiprocesor ` (#248)
parent 701e9234
......@@ -98,7 +98,7 @@ void CodeGenTileLangCUDA::PrintExtraAttrs(const PrimFunc &f) {
// return
return;
}
stream << " __launch_bounds__(" << threadIdx_ext_int->value << ")";
stream << " __launch_bounds__(" << threadIdx_ext_int->value << ", 1)";
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment