Allow nsys 2024.7 installation. #3597
Triggered via pull request
November 28, 2024 09:28
Status
Failure
Total duration
23h 25m 0s
Artifacts
83
ci.yaml
on: pull_request
metadata
0s
Matrix: amd64 / test-distribution
Matrix: arm64 / test-distribution
Matrix: amd64 / test-jax / run-unit-test
Matrix: amd64 / test-nsys-jax / run-unit-test
Matrix: arm64 / test-jax / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-nsys-jax / run-unit-test
Waiting for pending jobs
Matrix: amd64 / test-te / run-unit-test
Matrix: amd64 / test-upstream-pax / pax-multi-node
Matrix: amd64 / test-upstream-pax / single-process-evaluation
Matrix: amd64 / test-upstream-pax / single-process-multi-device
Matrix: amd64 / test-te-multigpu / te-multi-gpu
Matrix: amd64 / test-upstream-t5x / t5x-multi-gpu
Matrix: amd64 / test-upstream-t5x / t5x-multi-node
Matrix: amd64 / test-gemma / run-unit-test
Matrix: amd64 / test-levanter / run-unit-test
Matrix: amd64 / test-maxtext / maxtext-multinode
Matrix: amd64 / test-maxtext / single-process-multi-device
Matrix: amd64 / test-triton / run-unit-test
Waiting for pending jobs
Matrix: amd64 / test-nsys-jax-archive
Matrix: arm64 / test-te / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-upstream-pax / pax-multi-node
Waiting for pending jobs
Matrix: arm64 / test-upstream-pax / single-process-evaluation
Waiting for pending jobs
Matrix: arm64 / test-upstream-pax / single-process-multi-device
Waiting for pending jobs
Matrix: arm64 / test-te-multigpu / te-multi-gpu
Waiting for pending jobs
Matrix: arm64 / test-upstream-t5x / t5x-multi-gpu
Waiting for pending jobs
Matrix: arm64 / test-upstream-t5x / t5x-multi-node
Waiting for pending jobs
Matrix: arm64 / test-gemma / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-levanter / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-maxtext / maxtext-multinode
Waiting for pending jobs
Matrix: arm64 / test-maxtext / single-process-multi-device
Waiting for pending jobs
Matrix: arm64 / test-triton / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-nsys-jax-archive
Matrix: amd64 / test-rosetta-pax / rosetta-pax-multi-node-te
Matrix: amd64 / test-rosetta-pax / rosetta-pax-multi-node
Matrix: amd64 / test-rosetta-pax / rosetta-pax-single-node-dropout-te
Matrix: amd64 / test-rosetta-pax / single-process-evaluation-te
Matrix: amd64 / test-rosetta-pax / single-process-multi-device-te
Matrix: amd64 / test-rosetta-t5x / multi-gpu-multi-node
Matrix: amd64 / test-rosetta-t5x / single-process-multi-device
Matrix: amd64 / test-rosetta-t5x / vit-multi-gpu-multi-node
Matrix: amd64 / test-rosetta-t5x / vit-single-process-multi-device
Matrix: arm64 / test-rosetta-pax / rosetta-pax-multi-node-te
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / rosetta-pax-multi-node
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / rosetta-pax-single-node-dropout-te
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / single-process-evaluation-te
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / single-process-multi-device-te
Waiting for pending jobs
Matrix: arm64 / test-rosetta-t5x / multi-gpu-multi-node
Waiting for pending jobs
Matrix: arm64 / test-rosetta-t5x / single-process-multi-device
Waiting for pending jobs
Matrix: arm64 / test-rosetta-t5x / vit-multi-gpu-multi-node
Waiting for pending jobs
Matrix: arm64 / test-rosetta-t5x / vit-single-process-multi-device
Waiting for pending jobs
Matrix: publish-containers
finalize
/
publish-badge
3s
Annotations
61 errors
amd64 / build-triton / build-triton
buildx failed with: ERROR: failed to solve: process "/bin/sh -c <<\"EOF\" bash -ex\npushd /opt/checkout/external/triton\nmkdir dist\n# Make sure the wheel is labelled as 3.1 (it is ~HEAD), not 3.0. The upstream branch\n# structure seems to have a 3.1 release branch that has not been merged back to main.\nsed -i -e 's|version=\"3\\.0\\.0\"|version=\"3.1.0\"|g' python/setup.py\n# Do not compile with -Werror\nsed -i -e 's|-Werror||g' CMakeLists.txt\n# The LLVM build above does not enable these libraries\nsed -i -e 's|\\(LLVMAMDGPU.*\\)|# \\1|g' CMakeLists.txt\n# Do not build tests\nsed -i -e 's|^\\s*add_subdirectory(unittest)|# unit tests disabled|' CMakeLists.txt\n# Avoid error due to forward declaration of Module\nsed -i -e '/#include \"llvm\\/IR\\/IRBuilder.h\"/a #include \"llvm/IR/Module.h\"' test/lib/Instrumentation/GPUHello.cpp\n# Google has patches that mess with include paths in source files\nsed -i -e '/include_directories(${PROJECT_SOURCE_DIR}\\/third_party)/a include_directories(${PROJECT_SOURCE_DIR}/third_party/amd/include)' CMakeLists.txt\nsed -i -e '/include_directories(${PROJECT_BINARY_DIR}\\/third_party)/a include_directories(${PROJECT_BINARY_DIR}/third_party/amd/include)' CMakeLists.txt\nsed -i -e '/include_directories(${PROJECT_SOURCE_DIR}\\/third_party)/a include_directories(${PROJECT_SOURCE_DIR}/third_party/nvidia/include)' CMakeLists.txt\nsed -i -e '/include_directories(${PROJECT_BINARY_DIR}\\/third_party)/a include_directories(${PROJECT_BINARY_DIR}/third_party/nvidia/include)' CMakeLists.txt\n# Extra patches to Triton maintained in XLA. These are already applied in the working directory.\nXLA_TRITON_PATCHES=\"${SRC_PATH_XLA}/third_party/triton\"\n# Use clang to match Google etc.\nLLVM_INCLUDE_DIRS=/opt/llvm-build/include \\\n LLVM_LIBRARY_DIR=/opt/llvm-build/lib \\\n LLVM_SYSPATH=/opt/llvm-build \\\n TRITON_BUILD_WITH_CLANG_LLD=1 \\\n pip wheel --verbose --wheel-dir=dist/ python/\n# Clean up the wheel build directory so it doesn't end up bloating the container\nrm -rf python/build\nEOF" did not complete successfully: exit code: 1
|
arm64 / build-upstream-pax / build-upstream-pax
buildx failed with: ERROR: failed to solve: process "/bin/sh -c pip-finalize.sh" did not complete successfully: exit code: 1
|
arm64 / build-upstream-t5x / build-upstream-t5x
buildx failed with: ERROR: failed to solve: process "/bin/sh -c pip-finalize.sh" did not complete successfully: exit code: 1
|
arm64 / build-maxtext / build-maxtext
buildx failed with: ERROR: failed to solve: process "/bin/sh -c pip-finalize.sh" did not complete successfully: exit code: 1
|
amd64 / test-levanter / levanter-V100-unit-test
Process completed with exit code 1.
|
amd64 / test-jax / jax-A100-unit-test
Process completed with exit code 1.
|
amd64 / test-levanter / levanter-A100-unit-test
Process completed with exit code 1.
|
amd64 / test-upstream-pax / single-process-multi-device (1, 8, 1, 1)
The job running on runner jumpbox-vc69x-bgl7g has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-upstream-pax / single-process-multi-device (1, 8, 1, 1)
The operation was canceled.
|
amd64 / test-te / runner / launch-slurm-runner
The job running on runner jumpbox-vc69x-zggtb has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-te / runner / launch-slurm-runner
The operation was canceled.
|
amd64 / test-te-multigpu / te-multi-gpu (2) / te-2GPU
The job running on runner jumpbox-vc69x-8fmzk has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-te-multigpu / te-multi-gpu (2) / te-2GPU
The operation was canceled.
|
amd64 / test-te-multigpu / te-multi-gpu (4) / te-4GPU
The job running on runner jumpbox-vc69x-8v8tr has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-te-multigpu / te-multi-gpu (4) / te-4GPU
The operation was canceled.
|
amd64 / test-upstream-pax / single-process-evaluation (1, 8, 1, 1)
The job running on runner jumpbox-vc69x-576mw has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-upstream-pax / single-process-evaluation (1, 8, 1, 1)
The operation was canceled.
|
amd64 / test-upstream-pax / pax-multi-node (1DP1FSDP1TP1PP, 1, 1, 1, 1, 4)
The job running on runner jumpbox-vc69x-8n22h has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-upstream-pax / pax-multi-node (1DP1FSDP1TP1PP, 1, 1, 1, 1, 4)
The operation was canceled.
|
amd64 / test-te-multigpu / te-multi-gpu (8) / te-8GPU
The job running on runner jumpbox-vc69x-rbzvl has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-te-multigpu / te-multi-gpu (8) / te-8GPU
The operation was canceled.
|
amd64 / test-upstream-t5x / t5x-multi-node (8G2N, 8, 2)
The job running on runner jumpbox-vc69x-jtrd7 has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-upstream-t5x / t5x-multi-node (8G2N, 8, 2)
The operation was canceled.
|
amd64 / test-upstream-t5x / t5x-multi-gpu (1P8G, 8)
The job running on runner jumpbox-vc69x-khlzd has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-upstream-t5x / t5x-multi-gpu (1P8G, 8)
The operation was canceled.
|
amd64 / test-te / te-A100-unit-test
The self-hosted runner: A100-7c8c736307e6 lost communication with the server. Verify the machine is running and has a healthy network connection. Anything in your workflow that terminates the runner process, starves it for CPU/Memory, or blocks its network access can cause this error.
|
amd64 / test-rosetta-pax / rosetta-pax-multi-node-te (1DP1FSDP1TP1PP_TE, 1, 1, 1, 1, 4)
The job running on runner jumpbox-vc69x-cjg7g has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-pax / rosetta-pax-multi-node-te (1DP1FSDP1TP1PP_TE, 1, 1, 1, 1, 4)
The operation was canceled.
|
amd64 / test-rosetta-pax / rosetta-pax-multi-node (1, 8, 1, 1)
The job running on runner jumpbox-vc69x-p9plp has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-pax / rosetta-pax-multi-node (1, 8, 1, 1)
The operation was canceled.
|
amd64 / test-rosetta-pax / rosetta-pax-single-node-dropout-te (1, 8, 1, 1)
The job running on runner jumpbox-vc69x-gghbt has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-pax / rosetta-pax-single-node-dropout-te (1, 8, 1, 1)
The operation was canceled.
|
amd64 / test-rosetta-pax / single-process-multi-device-te (1, 8, 1, 1)
The job running on runner jumpbox-vc69x-wcvvb has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-pax / single-process-multi-device-te (1, 8, 1, 1)
The operation was canceled.
|
amd64 / test-rosetta-t5x / multi-gpu-multi-node (2N8G-te-1, 8, 2, --gin.train/utils.DatasetConfig.pack=False --gin.train_eva...
The job running on runner jumpbox-vc69x-twbp8 has exceeded the maximum execution time of 360 minutes.
|
|
amd64 / test-nsys-jax-archive (macOS-latest)
The job running on runner GitHub Actions 54 has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-nsys-jax-archive (macOS-latest)
The operation was canceled.
|
amd64 / test-upstream-t5x / t5x-multi-node (8G2N_fmha, 8, 2, --enable-fmha 1)
The job running on runner jumpbox-vc69x-gljh2 has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-upstream-t5x / t5x-multi-node (8G2N_fmha, 8, 2, --enable-fmha 1)
The operation was canceled.
|
amd64 / test-upstream-t5x / test-upstream-t5x-outcome
Process completed with exit code 1.
|
amd64 / test-rosetta-t5x / vit-multi-gpu-multi-node (1, 2)
The job running on runner jumpbox-vc69x-5rh5k has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-t5x / vit-multi-gpu-multi-node (1, 2)
The operation was canceled.
|
amd64 / test-rosetta-t5x / multi-gpu-multi-node (2N2G_te-0, 2, 2, --enable-te 0)
The job running on runner jumpbox-vc69x-pghll has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-t5x / multi-gpu-multi-node (2N2G_te-0, 2, 2, --enable-te 0)
The operation was canceled.
|
amd64 / test-rosetta-pax / rosetta-pax-multi-node (4, 2, 1, 2)
The job running on runner jumpbox-vc69x-8t9nf has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-pax / rosetta-pax-multi-node (4, 2, 1, 2)
The operation was canceled.
|
amd64 / test-rosetta-pax / rosetta-pax-multi-node-te (16DP1FSDP1TP1PP_TE, 1, 16, 1, 1, 4)
The job running on runner jumpbox-vc69x-qj49f has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-pax / rosetta-pax-multi-node-te (16DP1FSDP1TP1PP_TE, 1, 16, 1, 1, 4)
The operation was canceled.
|
amd64 / test-maxtext / maxtext-multinode (1, 4, 2, 2)
The job running on runner jumpbox-vc69x-2q56f has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-maxtext / maxtext-multinode (1, 4, 2, 2)
The operation was canceled.
|
amd64 / test-maxtext / test-maxtext-outcome
Process completed with exit code 1.
|
amd64 / test-upstream-pax / pax-multi-node (16DP1FSDP1TP1PP, 1, 16, 1, 1, 4)
The job running on runner jumpbox-vc69x-slz4p has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-upstream-pax / pax-multi-node (16DP1FSDP1TP1PP, 1, 16, 1, 1, 4)
The operation was canceled.
|
amd64 / test-rosetta-pax / test-pax-rosetta-outcome
Process completed with exit code 1.
|
amd64 / test-rosetta-t5x / vit-multi-gpu-multi-node (8, 2)
The job running on runner jumpbox-vc69x-qkr4n has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-rosetta-t5x / vit-multi-gpu-multi-node (8, 2)
The operation was canceled.
|
amd64 / test-rosetta-t5x / test-t5x-rosetta-outcome
Process completed with exit code 1.
|
amd64 / test-upstream-pax / pax-multi-node (2DP1FSDP2TP4PP, 4, 2, 1, 2, 4)
The job running on runner jumpbox-vc69x-nc85p has exceeded the maximum execution time of 360 minutes.
|
amd64 / test-upstream-pax / pax-multi-node (2DP1FSDP2TP4PP, 4, 2, 1, 2, 4)
The operation was canceled.
|
amd64 / test-upstream-pax / test-upstream-pax-outcome
Process completed with exit code 1.
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
artifact-base-build-amd64
|
568 Bytes |
|
artifact-base-build-arm64
|
565 Bytes |
|
artifact-equinox-build-amd64
|
571 Bytes |
|
artifact-equinox-build-arm64
|
569 Bytes |
|
artifact-final-report
|
4.53 KB |
|
artifact-gemma-build-amd64
|
562 Bytes |
|
artifact-jax-build-amd64
|
554 Bytes |
|
artifact-jax-build-arm64
|
554 Bytes |
|
artifact-levanter-build-amd64
|
572 Bytes |
|
artifact-levanter-build-arm64
|
572 Bytes |
|
artifact-maxtext-build-amd64
|
567 Bytes |
|
artifact-maxtext-build-arm64
|
515 Bytes |
|
artifact-maxtext-test
|
654 Bytes |
|
artifact-pax-build-amd64
|
567 Bytes |
|
artifact-pax-build-arm64
|
514 Bytes |
|
artifact-rosetta-build-pax-amd64
|
582 Bytes |
|
artifact-rosetta-build-t5x-amd64
|
585 Bytes |
|
artifact-rosetta-pax-mgmn-test
|
718 Bytes |
|
artifact-rosetta-t5x-mgmn-test
|
658 Bytes |
|
artifact-t5x-build-amd64
|
568 Bytes |
|
artifact-t5x-build-arm64
|
516 Bytes |
|
artifact-triton-build-amd64
|
469 Bytes |
|
artifact-upstream-pax-mgmn-test
|
681 Bytes |
|
artifact-upstream-t5x-mgmn-test
|
629 Bytes |
|
artifact-workflow-metadata
|
277 Bytes |
|
bumped-manifest
|
80.1 KB |
|
final-base
|
254 Bytes |
|
final-equinox
|
263 Bytes |
|
final-gemma
|
257 Bytes |
|
final-jax
|
251 Bytes |
|
final-levanter
|
266 Bytes |
|
final-maxtext
|
263 Bytes |
|
final-pax
|
251 Bytes |
|
final-t5x
|
251 Bytes |
|
final-upstream-pax
|
276 Bytes |
|
final-upstream-t5x
|
276 Bytes |
|
gemma-unit-test-A100
|
5.23 KB |
|
gemma-unit-test-V100
|
3.96 KB |
|
jax-unit-test-A100
|
21.7 KB |
|
jax-unit-test-V100
|
25.6 KB |
|
levanter-unit-test-A100
|
13 KB |
|
levanter-unit-test-V100
|
15.3 KB |
|
mealkit-equinox
|
272 Bytes |
|
mealkit-gemma
|
265 Bytes |
|
mealkit-jax
|
261 Bytes |
|
mealkit-levanter
|
275 Bytes |
|
mealkit-maxtext
|
271 Bytes |
|
mealkit-pax
|
262 Bytes |
|
mealkit-t5x
|
262 Bytes |
|
mealkit-upstream-pax
|
286 Bytes |
|
mealkit-upstream-t5x
|
286 Bytes |
|
nsys-jax-unit-test-A100
|
28.5 MB |
|
nsys-jax-unit-test-V100
|
15.7 MB |
|
rosetta-pax-12066088492-1DP2FSDP4TP1PP_single_process_TE
|
112 KB |
|
rosetta-pax-12066088492-1DP8FSDP1TP1PP_TE
|
380 KB |
|
rosetta-pax-12066088492-2DP1FSDP1TP4PP
|
250 KB |
|
rosetta-pax-12066088492-4DP1FSDP2TP1PP
|
404 KB |
|
rosetta-pax-12066088492-4DP1FSDP2TP1PP_TE
|
379 KB |
|
rosetta-pax-12066088492-5B_fused_attn_0
|
422 KB |
|
rosetta-pax-12066088492-5B_fused_attn_1
|
440 KB |
|
rosetta-pax-12066088492-8DP1FSDP1TP1PP_TE
|
378 KB |
|
rosetta-pax-12066088492-8DP1FSDP1TP1PP_eval_TE
|
90 KB |
|
rosetta-pax-12066088492-LLaMA_eval_TE
|
255 KB |
|
rosetta-t5x-12066088492-1P1G_te-0
|
35.2 KB |
|
rosetta-t5x-12066088492-1P8G_te-1
|
35.3 KB |
|
rosetta-t5x-vit-12066088492-VIT1G1N
|
21.5 KB |
|
rosetta-t5x-vit-12066088492-VIT1P8G
|
21.7 KB |
|
rosetta-t5x-vit-12066088492-VIT8G1N
|
32.7 KB |
|
te-multigpu-test
|
528 Bytes |
|
te-unit-test-V100
|
679 KB |
|
upstream-maxtext-12066088492-1DP1FSDP1TP1PP
|
14.8 KB |
|
upstream-maxtext-12066088492-1DP1FSDP8TP1PP
|
21.2 KB |
|
upstream-maxtext-12066088492-1DP2FSDP4TP1PP_single_process
|
15.2 KB |
|
upstream-maxtext-12066088492-1DP4FSDP2TP1PP
|
21 KB |
|
upstream-maxtext-12066088492-1DP8FSDP1TP1PP
|
20.8 KB |
|
upstream-maxtext-12066088492-2DP2FSDP2TP1PP
|
21 KB |
|
upstream-pax-12066088492-1DP2FSDP4TP1PP_single_process
|
148 KB |
|
upstream-pax-12066088492-1DP8FSDP1TP1PP
|
458 KB |
|
upstream-pax-12066088492-2DP1FSDP1TP4PP
|
327 KB |
|
upstream-pax-12066088492-4DP1FSDP2TP1PP
|
465 KB |
|
upstream-pax-12066088492-8DP1FSDP1TP1PP
|
449 KB |
|
upstream-pax-12066088492-LLaMA_eval
|
269 KB |
|
upstream-t5x-12066088492-1P2G_fmha
|
34.1 KB |
|