Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{2023.06}[foss/2023a] PyTorch-bundle 2.1.2 with CUDA/12.1.1 #387

Open
wants to merge 18 commits into
base: nessi.no-2023.06
Choose a base branch
from
Open
Show file tree
Hide file tree
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
9 changes: 6 additions & 3 deletions bot/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,12 @@ fi
# Retain location for host injections so we don't reinstall CUDA
# (Always need to run the driver installation as available driver may change)

if [[ ! -z ${SHARED_FS_PATH} ]]; then
BUILD_STEP_ARGS+=("--host-injections" "${SHARED_FS_PATH}/host-injections")
fi
# use $STORAGE for host-injections (maybe shared fs is not behaving well)
mkdir -p ${STORAGE}/host_injections
BUILD_STEP_ARGS+=("--host-injections" "${STORAGE}/host-injections")
#if [[ ! -z ${SHARED_FS_PATH} ]]; then
# BUILD_STEP_ARGS+=("--host-injections" "${SHARED_FS_PATH}/host-injections")
#fi

# create tmp file for output of build step
build_outerr=$(mktemp build.outerr.XXXX)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,8 @@ easyconfigs:
from-pr: 19987
- tensorboard-2.15.1-gfbf-2023a.eb
- tqdm-4.66.1-GCCcore-12.3.0.eb
- PyTorch-bundle-2.1.2-foss-2023a-CUDA-12.1.1.eb:
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/20484
options:
from-pr: 20484
cuda-compute-capabilities: 6.0,6.1,7.0,7.5,8.0,8.6,8.9,9.0
2 changes: 1 addition & 1 deletion eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

import easybuild.tools.environment as env
from easybuild.easyblocks.generic.configuremake import obtain_config_guess
from easybuild.framework.easyconfig.constants import EASYCONFIG_CONSTANTS
from easybuild.easyblocks.python import EXTS_FILTER_PYTHON_PACKAGES
from easybuild.framework.easyconfig.constants import EASYCONFIG_CONSTANTS
from easybuild.tools.build_log import EasyBuildError, print_msg
from easybuild.tools.config import build_option, update_build_option
from easybuild.tools.filetools import apply_regex_substitutions, copy_file, remove_file, symlink, which
Expand Down
Loading