From 57c4191dceae213d1642e707b995a21cd5986542 Mon Sep 17 00:00:00 2001 From: omlopez Date: Sun, 24 Aug 2025 16:53:17 -0400 Subject: [PATCH] sed_args is not defined. Using used_args instead. This fixes compilation error with USA_CUSA ON --- graph_framework/cuda_context.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph_framework/cuda_context.hpp b/graph_framework/cuda_context.hpp index c1d2cbb..e3c9ce0 100644 --- a/graph_framework/cuda_context.hpp +++ b/graph_framework/cuda_context.hpp @@ -723,7 +723,7 @@ namespace gpu { jit::add_type (source_buffer); source_buffer << " * __restrict__ " << jit::to_string('v', inputs[0].get()); - sed_args.insert(inputs[0].get()); + used_args.insert(inputs[0].get()); } for (size_t i = 1, ie = inputs.size(); i < ie; i++) { if (!used_args.contains(inputs[i].get())) { -- GitLab