You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error on line 6 : 'a' is not a View1D
DEBUG AST:
Subscript(
value=Name(id='a', ctx=Load()),
slice=Tuple(
elts=[
Name(id='wid', ctx=Load()),
Name(id='wid', ctx=Load())],
ctx=Load()),
ctx=Store())
a[wid,wid] = a[wid,wid] + 1
^^^^^^^^^^
Translation of <ast.FunctionDef object at 0x150231e8fd00> work failed
The text was updated successfully, but these errors were encountered:
In a
pk.workunit
, my code fails when I try to access a cupy array asx[a, b]
instead ofx[a][b]
. For example, the scriptfails with error
The text was updated successfully, but these errors were encountered: