dace icon indicating copy to clipboard operation
dace copied to clipboard

Callback arguments not added as dataflow

Open tbennun opened this issue 3 years ago • 0 comments

The following program does not work:

@dace
def tester(A: dace.float64[20]):
    print(np.sum(A))

But this one does:

@dace
def tester(A: dace.float64[20]):
    b = np.sum(A)
    print(b)

Seems to be a simple issue with arguments in create_callback.

tbennun avatar Aug 06 '22 15:08 tbennun