We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56aad6e commit 23c324aCopy full SHA for 23c324a
numba_cuda/numba/cuda/tests/cudapy/test_debuginfo.py
@@ -76,12 +76,13 @@ def test_issue_9888(self):
76
# Compiler created symbol should not be emitted in DILocalVariable
77
# See Numba Issue #9888 https://github.com/numba/numba/pull/9888
78
sig = (types.boolean,)
79
+
80
@cuda.jit(sig, debug=True, opt=False)
81
def f(cond):
82
if cond:
- x = 1
83
+ x = 1 # noqa: F841
84
else:
- x = 0
85
+ x = 0 # noqa: F841
86
87
llvm_ir = f.inspect_llvm(sig)
88
# A varible name starting with "bool" in the debug metadata
0 commit comments