Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/fbgemm_gpu_ci_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,14 @@ jobs:

- name: Test with PyTest
timeout-minutes: ${{ matrix.host-machine.timeout }}
env:
# Serialize Inductor's C++ compile workers. By default Inductor spawns
# one worker per vCPU (16 on these runners), and the torch.compile-heavy
# TBE tests blow past the 32 GB RAM on x86 linux.4xlarge (c5.4xlarge),
# OOM-killing the runner agent ("lost communication"). The arm
# linux.arm64.m7g.4xlarge (64 GB) survives. Capping to 1 keeps peak
# memory in budget without changing test coverage or runner cost.
TORCHINDUCTOR_COMPILE_THREADS: 1
run: . $PRELUDE; test_all_fbgemm_gpu_modules $BUILD_ENV

- name: Push Wheel to PyPI
Expand Down
Loading