We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec6c09d commit 3f10ad2Copy full SHA for 3f10ad2
ggml/src/ggml-cuda/ggml-cuda.cu
@@ -2488,10 +2488,10 @@ static bool check_node_graph_compatibility_and_refresh_copy_ops(ggml_backend_cud
2488
#endif
2489
}
2490
2491
- if (node->op == GGML_OP_MUL_MAT_ID) {
+ if (node->op == GGML_OP_MUL_MAT_ID || node->op == GGML_OP_CONT || node->op == GGML_OP_DUP) {
2492
use_cuda_graph = false; // This node type is not supported by CUDA graph capture
2493
#ifndef NDEBUG
2494
- GGML_LOG_DEBUG("%s: disabling CUDA graphs due to mul_mat_id\n", __func__);
+ GGML_LOG_DEBUG("%s: disabling CUDA graphs due to unsupported node type\n", __func__);
2495
2496
2497
0 commit comments