Commit 15e8ab0f authored by Cianciosa, Mark's avatar Cianciosa, Mark
Browse files

Merge branch 'fix_used_args_compilation_error' into 'main'

sed_args is not defined. Using used_args instead. This fixes compilation error with USA_CUSA ON

See merge request !78
parents e6e504cd 57c4191d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -723,7 +723,7 @@ namespace gpu {
                jit::add_type<T> (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())) {