Skip to content

Commit 9c86b9d

Browse files
committed
debug print
1 parent d2a4e35 commit 9c86b9d

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ jobs:
8585
curl -L -O https://tiker.net/ci-support-v0
8686
. ./ci-support-v0
8787
build_py_project_in_conda_env
88+
export PYTEST_FLAGS=-sv
89+
export CISUPPORT_PYTEST_NRUNNERS=1
8890
test_py_project
8991
9092
examples3:

arraycontext/impl/pytato/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,12 @@ def transform_loopy_program(
10141014
#. Once the kernel boundaries are inferred, global temporaries are aliased
10151015
to reduce the memory peak memory used by the transformed program.
10161016
"""
1017-
return self._parallelize_across_device(t_unit)
1017+
t_unit = self._parallelize_across_device(t_unit)
1018+
1019+
import sys
1020+
print(t_unit, file=sys.stderr, flush=True)
1021+
1022+
return t_unit
10181023

10191024

10201025
# {{{ PytatoJAXArrayContext

0 commit comments

Comments
 (0)