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
importnumpyasnpimportdace@dace.programdefruntime(arr) ->None:
arr.flat[:] +=1# <--- Regression: left hand side assign failsreturnarr.flat[:] # Right hand side still worksif__name__=="__main__":
arr=np.ones((3, 3))
runtime(arr)
assert (arr[:] ==2).all()
LHS of assign are failing at parsing times, probably in connetion with the struct work
LHS of assign are failing at parsing times, probably in connetion with the
struct
workThe text was updated successfully, but these errors were encountered: