From d1d329ca3e40237760779352de765f7d02b5503a Mon Sep 17 00:00:00 2001 From: Eyal Rozenberg Date: Thu, 5 Sep 2024 22:42:13 +0300 Subject: [PATCH] Regards #672: Dropped gratuitous and weird setting of kernel launch node parameters in a graph instance, in `simpleCudaGraphs` --- .../simpleCudaGraphs/simpleCudaGraphs.cu | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/modified_cuda_samples/simpleCudaGraphs/simpleCudaGraphs.cu b/examples/modified_cuda_samples/simpleCudaGraphs/simpleCudaGraphs.cu index f9ff9e09..2d4e29a9 100644 --- a/examples/modified_cuda_samples/simpleCudaGraphs/simpleCudaGraphs.cu +++ b/examples/modified_cuda_samples/simpleCudaGraphs/simpleCudaGraphs.cu @@ -279,10 +279,6 @@ void cudaGraphsManual( graph.insert.edge(memcpy_result_node, host_function_node); auto instance = graph.instantiate(); - cuda::graph::node::parameters_t* params_ptr = nullptr; - cuda::graph::instance::set_node_parameters(instance, reduce_final_node, *params_ptr); - - use(device, graph, graph_construction_mode); }