We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 358c862 commit 075da63Copy full SHA for 075da63
.github/workflows/_tpu_ci.yml
@@ -23,6 +23,7 @@ jobs:
23
- test/tpu/run_tests.sh
24
- test/tpu/run_expensive_test_1.sh
25
- test/tpu/run_expensive_test_2.sh
26
+ - test/tpu/run_pallas_test.sh
27
steps:
28
- name: Checkout actions
29
if: inputs.has_code_changes == 'true'
test/tpu/run_pallas_test.sh
@@ -0,0 +1,13 @@
1
+#!/bin/bash
2
+set -xue
3
+CDIR="$(cd "$(dirname "$0")" ; pwd -P)"
4
+TEST_CDIR="$(dirname "$CDIR")"
5
+
6
+# This test takes ~370 seconds to run
7
+python3 "$TEST_CDIR/test_pallas.py" -v
8
9
+# This test takes ~15 seconds to run
10
+python3 "$TEST_CDIR/test_pallas_spmd.py"
11
12
13
+XLA_DISABLE_FUNCTIONALIZATION=1 python3 "$TEST_CDIR/test_pallas_spmd.py"
0 commit comments