Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/gt4py
Submodule gt4py updated 39 files
+12 −12 src/gt4py/cartesian/gtc/common.py
+5 −4 src/gt4py/cartesian/gtc/passes/gtir_upcaster.py
+10 −4 src/gt4py/next/embedded/operators.py
+4 −2 src/gt4py/next/ffront/decorator.py
+65 −28 src/gt4py/next/ffront/past_passes/type_deduction.py
+90 −107 src/gt4py/next/ffront/past_to_itir.py
+7 −1 src/gt4py/next/ffront/program_ast.py
+8 −3 src/gt4py/next/iterator/embedded.py
+14 −3 src/gt4py/next/iterator/ir_utils/misc.py
+6 −8 src/gt4py/next/iterator/transforms/global_tmps.py
+11 −4 src/gt4py/next/iterator/transforms/infer_domain.py
+28 −1 src/gt4py/next/program_processors/runners/dace/gtir_domain.py
+23 −10 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg.py
+17 −9 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg_primitives.py
+71 −15 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg_scan.py
+9 −3 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg_types.py
+7 −4 src/gt4py/next/program_processors/runners/dace/transformations/auto_optimize.py
+9 −6 src/gt4py/next/program_processors/runners/dace/transformations/local_double_buffering.py
+7 −1 src/gt4py/next/program_processors/runners/dace/transformations/loop_blocking.py
+8 −1 src/gt4py/next/program_processors/runners/dace/transformations/map_fusion_extended.py
+2 −1 src/gt4py/next/program_processors/runners/dace/transformations/map_splitter.py
+13 −1 src/gt4py/next/program_processors/runners/dace/transformations/simplify.py
+20 −1 src/gt4py/next/program_processors/runners/dace/transformations/strides.py
+55 −5 src/gt4py/next/utils.py
+34 −0 tests/cartesian_tests/integration_tests/multi_feature_tests/test_code_generation.py
+2 −0 tests/next_tests/integration_tests/cases.py
+0 −16 tests/next_tests/integration_tests/feature_tests/dace/test_program.py
+7 −6 tests/next_tests/integration_tests/feature_tests/ffront_tests/ffront_test_utils.py
+31 −16 tests/next_tests/integration_tests/feature_tests/ffront_tests/test_execution.py
+11 −9 tests/next_tests/integration_tests/feature_tests/ffront_tests/test_import_from_mod.py
+3 −1 tests/next_tests/integration_tests/feature_tests/ffront_tests/test_math_unary_builtins.py
+12 −4 tests/next_tests/integration_tests/feature_tests/ffront_tests/test_where.py
+2 −2 tests/next_tests/integration_tests/feature_tests/test_util_cases.py
+682 −0 tests/next_tests/integration_tests/multi_feature_tests/ffront_tests/test_multiple_output_domains.py
+2 −0 tests/next_tests/integration_tests/multi_feature_tests/iterator_tests/test_column_stencil.py
+1 −1 tests/next_tests/unit_tests/ffront_tests/test_func_to_past.py
+42 −11 tests/next_tests/unit_tests/program_processor_tests/runners_tests/dace_tests/test_gtir_to_sdfg.py
+1 −1 ...s/program_processor_tests/runners_tests/dace_tests/transformation_tests/test_horizontal_map_split_fusion.py
+1 −1 ...ests/unit_tests/program_processor_tests/runners_tests/dace_tests/transformation_tests/test_loop_blocking.py