From 5126c41c1cae810a28e89dd424f729ef59417341 Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Mon, 5 Jan 2026 01:37:09 +0800 Subject: [PATCH] ggml-cuda: remove unused params in ggml_cuda_graph (#18579) --- ggml/src/ggml-cuda/common.cuh | 1 - 1 file changed, 1 deletion(-) diff --git a/ggml/src/ggml-cuda/common.cuh b/ggml/src/ggml-cuda/common.cuh index 302065ce9f..78502057a8 100644 --- a/ggml/src/ggml-cuda/common.cuh +++ b/ggml/src/ggml-cuda/common.cuh @@ -1058,7 +1058,6 @@ struct ggml_cuda_graph { cudaGraphExec_t instance = nullptr; size_t num_nodes = 0; std::vector nodes; - std::vector params; bool disable_due_to_gpu_arch = false; bool disable_due_to_too_many_updates = false; bool disable_due_to_failed_graph_capture = false;