Skip to content

Commit b80b480

Browse files
committed
Merge remote-tracking branch 'origin/main' into jwilber/codon-gene-enrichment-eval
2 parents 7e524bb + 1faa6e8 commit b80b480

288 files changed

Lines changed: 12201 additions & 13232 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.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Uncomment to use the latest TE from the NGC registry for debugging changes with latest TE.
22
# FROM gitlab-master.nvidia.com/dl/transformerengine/transformerengine:main-pytorch-py3-base
3-
FROM nvcr.io/nvidia/pytorch:26.02-py3
3+
FROM nvcr.io/nvidia/pytorch:26.03-py3
44

55
# FIXME: Fix for "No such file or directory: /workspace/TransformerEngine"
66
# Remove once bug has been addressed in the nvidia/pytorch container.
File renamed without changes.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "BioNeMo Recipes Dev Container",
2+
"name": "BioNeMo Dev Container",
33
"build": {
44
"dockerfile": "Dockerfile"
55
},
@@ -14,8 +14,8 @@
1414
"source=${localEnv:HOME}/.netrc,target=/home/ubuntu/.netrc,type=bind,consistency=cached",
1515
"source=${localEnv:HOME}/.ssh,target=/home/ubuntu/.ssh,readonly,type=bind,consistency=cached"
1616
],
17-
"postCreateCommand": ".devcontainer/recipes/postCreateCommand.sh",
18-
"initializeCommand": ".devcontainer/recipes/initializeCommand.sh",
17+
"postCreateCommand": ".devcontainer/postCreateCommand.sh",
18+
"initializeCommand": ".devcontainer/initializeCommand.sh",
1919
"remoteUser": "ubuntu",
2020
"runArgs": [
2121
"--gpus=all",

.devcontainer/framework/devcontainer.json

Lines changed: 0 additions & 60 deletions
This file was deleted.

.devcontainer/framework/initializeCommand.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

.devcontainer/framework/postCreateCommand.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
# Launch the recipes devcontainer headlessly (no VS Code / Cursor required).
4+
# Launch the devcontainer headlessly (no VS Code / Cursor required).
55
# All mounts, runArgs, containerEnv, and lifecycle commands are parsed at
66
# runtime from devcontainer.json so the two definitions never drift apart.
77

88
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
9-
REPO_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)"
9+
REPO_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
1010
DEVCONTAINER_JSON="${SCRIPT_DIR}/devcontainer.json"
11-
CONTAINER_NAME="${BIONEMO_CONTAINER_NAME:-bionemo-recipes-devcontainer}"
12-
IMAGE_NAME="${BIONEMO_IMAGE_NAME:-bionemo-recipes-devcontainer:latest}"
11+
CONTAINER_NAME="${BIONEMO_CONTAINER_NAME:-bionemo-devcontainer}"
12+
IMAGE_NAME="${BIONEMO_IMAGE_NAME:-bionemo-devcontainer:latest}"
1313

1414
# ---------------------------------------------------------------------------
1515
# Helpers

0 commit comments

Comments
 (0)