We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2a4e35 commit 5d78df3Copy full SHA for 5d78df3
2 files changed
.github/workflows/ci.yml
@@ -85,6 +85,9 @@ 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
+ export CISUPPORT_PYTEST_NRUNNERS=1
90
+ export NO_COLOR
91
test_py_project
92
93
examples3:
arraycontext/impl/pytato/__init__.py
@@ -1014,7 +1014,12 @@ 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
+
1019
+ import sys
1020
+ print(t_unit, file=sys.stderr, flush=True)
1021
1022
+ return t_unit
1023
1024
1025
# {{{ PytatoJAXArrayContext
0 commit comments