Skip to content

Commit

Permalink
Merge branch 'main' into fixed-auto-optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-paul-mueller authored Feb 26, 2025
2 parents 2d5ad5d + 3249aa5 commit abdcd60
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ def test_gtir_let_lambda_with_tuple1():

sdfg = build_dace_sdfg(testee, CARTESIAN_OFFSETS)

z_fields = (np.empty_like(a), np.empty_like(a))
z_fields = (np.zeros_like(a), np.zeros_like(a))
a_ref = np.concatenate((z_fields[0][:1], a[1 : N - 1], z_fields[0][N - 1 :]))
b_ref = np.concatenate((z_fields[1][:1], b[1 : N - 1], z_fields[1][N - 1 :]))

Expand Down Expand Up @@ -2037,7 +2037,7 @@ def test_gtir_index():
],
)

v = np.empty(N, dtype=np.int32)
v = np.zeros(N, dtype=np.int32)

# we need to run domain inference in order to add the domain annex information to the index node.
testee = infer_domain.infer_program(testee, offset_provider=CARTESIAN_OFFSETS)
Expand Down

0 comments on commit abdcd60

Please sign in to comment.