We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d2da7f commit 627f406Copy full SHA for 627f406
ggml/src/ggml-cuda/fattn-new-mma.cu
@@ -273,11 +273,11 @@ struct fattn_mma_f16_config<576, 512> {
273
}
274
275
static constexpr __device__ int get_nbatch_V2_device(int ncols) {
276
-#if __CUDA_ARCH__ == GML_CUDA_CC_TURING
+#if __CUDA_ARCH__ == CC_TURING
277
return ncols <= 16 ? 64 : 128;
278
#else
279
return ncols <= 16 ? 256 : 128;
280
-#endif // __CUDA_ARCH__ == GML_CUDA_CC_TURING
+#endif // __CUDA_ARCH__ == CC_TURING
281
282
283
static int get_nbatch_combine_host(const int /*cc*/, const int /*ncols*/) {
0 commit comments