Skip to content

Commit

Permalink
Test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
edopao committed Dec 16, 2024
1 parent c03492c commit 310fcce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def gt_auto_optimize(
dace_aoptimize.move_small_arrays_to_stack(sdfg)

# Now we modify the strides.
gtx_transformations.gt_change_transient_strides(sdfg, gpu=gpu)
# TODO: re-enable gtx_transformations.gt_change_transient_strides(sdfg, gpu=gpu)

if make_persistent:
gtx_transformations.gt_make_transients_persistent(sdfg=sdfg, device=device)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def generate_sdfg(
# can handle. This is a workaround for an issue with scalar expressions that are
# promoted to symbolic expressions and computed on the host (CPU), but the intermediate
# result is written to a GPU global variable (https://github.com/spcl/dace/issues/1773).
gtx_transformations.gt_simplify(sdfg)
sdfg.simplify()
gtx_transformations.gt_gpu_transformation(sdfg, try_removing_trivial_maps=True)

return sdfg
Expand Down

0 comments on commit 310fcce

Please sign in to comment.