File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 23
23
- test/tpu/run_tests.sh
24
24
- test/tpu/run_expensive_test_1.sh
25
25
- test/tpu/run_expensive_test_2.sh
26
+ - test/tpu/run_pallas_test.sh
26
27
steps :
27
28
- name : Checkout actions
28
29
if : inputs.has_code_changes == 'true'
Original file line number Diff line number Diff line change
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
+ # This test takes ~15 seconds to run
13
+ XLA_DISABLE_FUNCTIONALIZATION=1 python3 " $TEST_CDIR /test_pallas_spmd.py"
Original file line number Diff line number Diff line change @@ -81,9 +81,6 @@ run_test "$_TEST_DIR/test_assume_pure.py"
81
81
run_test " $_TEST_DIR /test_assume_pure_spmd.py"
82
82
run_test " $_TEST_DIR /test_as_stride_use_slice.py"
83
83
run_xla_hlo_debug run_test " $_TEST_DIR /scan/test_scan_debug.py"
84
- run_test " $_TEST_DIR /test_pallas.py" -v
85
- run_test " $_TEST_DIR /test_pallas_spmd.py"
86
- XLA_DISABLE_FUNCTIONALIZATION=1 run_test " $_TEST_DIR /test_pallas_spmd.py"
87
84
run_test " $_TEST_DIR /test_splash_attention.py"
88
85
run_test " $_TEST_DIR /test_profiler_session.py"
89
86
run_test " $_TEST_DIR /test_input_output_aliases.py"
You can’t perform that action at this time.
0 commit comments