You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/eks-workflow-files/transformer-engine/scripts/unittest.sh
+12-5
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,20 @@
7
7
export TE_PATH=${SRC_PATH_TRANSFORMER_ENGINE}
8
8
9
9
# 1 GPU per worker, 6 workers per GPU
10
-
pytest-xdist.sh 1 6 pytest-report-L0-unittest.jsonl bash ${TE_PATH}/qa/L0_jax_unittest/test.sh | tee -a ${LOG_DIR}/tests.log
10
+
pytest-xdist.sh 1 6 pytest-report-L0-unittest.jsonl bash ${TE_PATH}/qa/L0_jax_unittest/test.sh | tee -a ${LOG_DIR}/pytest_stdout.log
11
11
12
12
# 8 GPUs per worker, 1 worker per GPU. pytest-xdist.sh allows aggregation
13
13
# into a single .jsonl file of results from multiple pytest invocations
14
14
# inside the test.sh script, so it's useful even with a single worker per
15
15
# device.
16
-
pytest-xdist.sh 8 1 pytest-report-L0-distributed-unittest.jsonl bash ${TE_PATH}/qa/L0_jax_distributed_unittest/test.sh | tee -a ${LOG_DIR}/tests.log
17
-
pytest-xdist.sh 8 1 pytest-report-L1-distributed-unittest.jsonl bash ${TE_PATH}/qa/L1_jax_distributed_unittest/test.sh | tee -a ${LOG_DIR}/tests.log
18
-
19
-
touch /opt/output/done
16
+
pytest-xdist.sh 8 1 pytest-report-L0-distributed-unittest.jsonl bash ${TE_PATH}/qa/L0_jax_distributed_unittest/test.sh | tee -a ${LOG_DIR}/pytest_stdout.log
17
+
pytest-xdist.sh 8 1 pytest-report-L1-distributed-unittest.jsonl bash ${TE_PATH}/qa/L1_jax_distributed_unittest/test.sh | tee -a ${LOG_DIR}/pytest_stdout.log
0 commit comments