We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2a4e35 commit a700c63Copy full SHA for a700c63
2 files changed
.github/workflows/ci.yml
@@ -85,6 +85,7 @@ jobs:
85
curl -L -O https://tiker.net/ci-support-v0
86
. ./ci-support-v0
87
build_py_project_in_conda_env
88
+ export PYTEST_FLAGS=-sv
89
test_py_project
90
91
examples3:
arraycontext/impl/pytato/__init__.py
@@ -1014,7 +1014,9 @@ def transform_loopy_program(
1014
#. Once the kernel boundaries are inferred, global temporaries are aliased
1015
to reduce the memory peak memory used by the transformed program.
1016
"""
1017
- return self._parallelize_across_device(t_unit)
+ t_unit = self._parallelize_across_device(t_unit)
1018
+ print(t_unit, flush=True)
1019
+ return t_unit
1020
1021
1022
# {{{ PytatoJAXArrayContext
0 commit comments