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 42 files
+11 −5 docs/development/tools/release.md
+4 −9 pyproject.toml
+49 −0 scripts/update.py
+1 −1 src/gt4py/__about__.py
+5 −0 src/gt4py/_core/definitions.py
+3 −3 src/gt4py/cartesian/gtc/debug/debug_codegen.py
+71 −4 src/gt4py/next/common.py
+59 −91 src/gt4py/next/embedded/nd_array_field.py
+3 −1 src/gt4py/next/otf/compiled_program.py
+25 −49 src/gt4py/next/program_processors/runners/dace/gtir_dataflow.py
+12 −58 src/gt4py/next/program_processors/runners/dace/gtir_domain.py
+93 −80 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg.py
+99 −137 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg_concat_where.py
+72 −110 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg_primitives.py
+84 −88 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg_scan.py
+11 −19 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg_types.py
+4 −30 src/gt4py/next/program_processors/runners/dace/gtir_to_sdfg_utils.py
+4 −1 src/gt4py/next/program_processors/runners/dace/transformations/__init__.py
+65 −52 src/gt4py/next/program_processors/runners/dace/transformations/auto_optimize.py
+91 −28 src/gt4py/next/program_processors/runners/dace/transformations/dead_dataflow_elimination.py
+68 −13 src/gt4py/next/program_processors/runners/dace/transformations/gpu_utils.py
+239 −0 src/gt4py/next/program_processors/runners/dace/transformations/map_splitter.py
+2 −1 src/gt4py/next/program_processors/runners/dace/transformations/redundant_array_removers.py
+24 −0 src/gt4py/next/program_processors/runners/dace/transformations/simplify.py
+16 −3 src/gt4py/next/program_processors/runners/dace/transformations/split_access_nodes.py
+70 −4 src/gt4py/next/program_processors/runners/dace/transformations/strides.py
+10 −15 src/gt4py/next/program_processors/runners/dace/workflow/bindings.py
+4 −1 src/gt4py/next/utils.py
+17 −0 tests/cartesian_tests/integration_tests/multi_feature_tests/test_code_generation.py
+19 −4 tests/next_tests/benchmarks/benchmark_program_call.py
+1 −0 tests/next_tests/integration_tests/feature_tests/ffront_tests/test_compiled_program.py
+0 −5 tests/next_tests/integration_tests/feature_tests/ffront_tests/test_execution.py
+4 −4 tests/next_tests/integration_tests/feature_tests/iterator_tests/test_tuple.py
+0 −1 tests/next_tests/integration_tests/multi_feature_tests/iterator_tests/test_column_stencil.py
+39 −13 tests/next_tests/unit_tests/embedded_tests/test_nd_array_field.py
+49 −47 tests/next_tests/unit_tests/program_processor_tests/runners_tests/dace_tests/test_dace_bindings.py
+7 −73 tests/next_tests/unit_tests/program_processor_tests/runners_tests/dace_tests/test_dace_domain.py
+222 −481 tests/next_tests/unit_tests/program_processor_tests/runners_tests/dace_tests/test_gtir_to_sdfg.py
+123 −0 ...xt_tests/unit_tests/program_processor_tests/runners_tests/dace_tests/transformation_tests/test_gpu_utils.py
+134 −0 ...tests/unit_tests/program_processor_tests/runners_tests/dace_tests/transformation_tests/test_map_splitter.py
+47 −0 tests/next_tests/unit_tests/test_common.py
+8 −4 uv.lock