Skip to content

Commit ce56cf9

Browse files
authored
Merge branch 'main' into fix/warn-ignored-dataset-config-keys
2 parents fae1d7c + bc382dc commit ce56cf9

174 files changed

Lines changed: 23278 additions & 2213 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/cicd-main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,7 @@ jobs:
374374
needs.pre-flight.outputs.test_level != 'none' &&
375375
needs.pre-flight.outputs.image_tag == '' &&
376376
needs.org-member-pre-flight.outputs.is_member == 'true' &&
377+
vars.DISABLE_GB200_TESTS != 'true' &&
377378
contains('L1 L2', needs.pre-flight.outputs.test_level) &&
378379
(
379380
needs.cicd-wait-in-queue.result == 'success' ||
@@ -801,6 +802,7 @@ jobs:
801802
always() &&
802803
contains('L1 L2', needs.pre-flight.outputs.test_level) &&
803804
needs.org-member-pre-flight.outputs.is_member == 'true' &&
805+
vars.DISABLE_GB200_TESTS != 'true' &&
804806
needs.pre-flight.result == 'success' &&
805807
needs.org-member-pre-flight.result == 'success' &&
806808
(
@@ -952,6 +954,7 @@ jobs:
952954
) &&
953955
(
954956
needs.org-member-pre-flight.outputs.is_member != 'true' ||
957+
vars.DISABLE_GB200_TESTS == 'true' ||
955958
!contains('L1 L2', needs.pre-flight.outputs.test_level) ||
956959
needs.cicd-functional-tests-gb200.result == 'success'
957960
) &&
Submodule Megatron-Bridge updated 1314 files

docker/install_apptainer.sh

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,11 @@ install_arm64_from_source() {
4141
local build_dir="/tmp/apptainer-build"
4242
local source_tarball="/tmp/apptainer-${APPTAINER_VERSION}.tar.gz"
4343
local source_url="https://github.com/apptainer/apptainer/releases/download/v${APPTAINER_VERSION}/apptainer-${APPTAINER_VERSION}.tar.gz"
44+
# curl, git, and wget are installed by docker/Dockerfile and must remain in the final image.
4445
local build_packages=(
4546
autoconf
4647
automake
47-
build-essential
48-
curl
4948
dh-apparmor
50-
git
5149
libfuse3-dev
5250
liblzo2-dev
5351
liblz4-dev
@@ -57,10 +55,10 @@ install_arm64_from_source() {
5755
libtool
5856
libzstd-dev
5957
pkg-config
60-
wget
6158
zlib1g-dev
6259
)
6360
local runtime_packages=(
61+
build-essential
6462
ca-certificates
6563
cryptsetup
6664
fakeroot
@@ -77,6 +75,13 @@ install_arm64_from_source() {
7775
uidmap
7876
zlib1g
7977
)
78+
local new_build_packages=()
79+
80+
for package in "${build_packages[@]}"; do
81+
if ! dpkg-query -W -f='${db:Status-Abbrev}' "${package}" 2>/dev/null | grep -q '^ii '; then
82+
new_build_packages+=("${package}")
83+
fi
84+
done
8085

8186
apt-get update
8287
apt-get install -y --no-install-recommends "${runtime_packages[@]}" "${build_packages[@]}"
@@ -100,7 +105,9 @@ install_arm64_from_source() {
100105
rm -rf "${build_dir}"
101106

102107
apt-get install -y --no-install-recommends "${runtime_packages[@]}"
103-
apt-get purge -y --auto-remove "${build_packages[@]}"
108+
if ((${#new_build_packages[@]} > 0)); then
109+
apt-get purge -y --auto-remove "${new_build_packages[@]}"
110+
fi
104111
rm -rf /usr/local/go /root/go /root/.cache/go-build
105112
}
106113

docs/about/backends.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@ NeMo RL supports multiple generation/rollout backends to accommodate different m
1818

1919
For detailed information on backend selection, configuration, and examples, see the [Generation Backends documentation](../design-docs/generation.md).
2020

21+
See [Weight Refit: Choosing a Transport](../guides/refit.md) to select colocated
22+
IPC, NCCL, sparse delta, or NIXL checkpoint-engine refit for the configured
23+
training and generation backends.

0 commit comments

Comments
 (0)