-
Notifications
You must be signed in to change notification settings - Fork 555
/
Copy pathnova_prescript.bash
134 lines (111 loc) · 4.21 KB
/
nova_prescript.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
export PATH="${PATH}:/usr/sbin:/sbin"
echo "[NOVA] Current working directory: $(pwd)"
cd "${FBGEMM_REPO}" || exit 1
PRELUDE="${FBGEMM_REPO}/.github/scripts/setup_env.bash"
BUILD_ENV_NAME=${CONDA_ENV}
# Load the FBGEMM_GPU build scripts infrastructure
# shellcheck disable=SC1091
# shellcheck source=.github/scripts/setup_env.bash
. "${PRELUDE}";
# Record time for each step
start_time=$(date +%s)
# Display System Info
print_system_info
end_time=$(date +%s)
runtime=$((end_time-start_time))
start_time=${end_time}
echo "[NOVA] Time taken to display System Info: ${runtime} seconds"
# Display Conda information
print_conda_info
end_time=$(date +%s)
runtime=$((end_time-start_time))
start_time=${end_time}
echo "[NOVA] Time taken to display Conda information: ${runtime} seconds"
# Display GPU Info
print_gpu_info
end_time=$(date +%s)
runtime=$((end_time-start_time))
start_time=${end_time}
echo "[NOVA] Time taken to display GPU Info: ${runtime} seconds"
# Install Build Tools
install_build_tools "${BUILD_ENV_NAME}"
end_time=$(date +%s)
runtime=$((end_time-start_time))
start_time=${end_time}
echo "[NOVA] Time taken to install Build Tools: ${runtime} seconds"
# Collect PyTorch environment information
collect_pytorch_env_info "${BUILD_ENV_NAME}"
end_time=$(date +%s)
runtime=$((end_time-start_time))
start_time=${end_time}
echo "[NOVA] Time taken to collect PyTorch environment information: ${runtime} seconds"
if [[ $CU_VERSION = cu* ]]; then
# shellcheck disable=SC2155
env_prefix=$(env_name_or_prefix "${env_name}")
# Use Nova CUDA installation
echo "[INSTALL] Set environment variables CUDNN_INCLUDE_DIR and CUDNN_LIBRARY ..."
# shellcheck disable=SC2086
print_exec conda env config vars set ${env_prefix} CUDNN_INCLUDE_DIR="${CUDA_HOME}/include" CUDNN_LIBRARY="${CUDA_HOME}/lib"
echo "[NOVA] -------- Finding NVML_LIB_PATH -----------"
if [[ ${NVML_LIB_PATH} == "" ]]; then
NVML_LIB_PATH=$(find "${CUDA_HOME}" -name libnvidia-ml.so) &&
export NVML_LIB_PATH &&
echo "[NOVA] looking in ${CUDA_HOME}" ||
echo "[NOVA] libnvidia-ml.so not found in ${CUDA_HOME}";
fi
if [[ ${NVML_LIB_PATH} == "" ]]; then
NVML_LIB_PATH=$(find "${CONDA_ENV}" -name libnvidia-ml.so) &&
export NVML_LIB_PATH &&
echo "[NOVA] looking in ${CONDA_ENV}" ||
echo "[NOVA] libnvidia-ml.so not found in ${CONDA_ENV}";
fi
echo "[NOVA] NVML_LIB_PATH = ${NVML_LIB_PATH}"
echo "[NOVA] ------------------------------------------"
end_time=$(date +%s)
runtime=$((end_time-start_time))
start_time=${end_time}
echo "[NOVA] Time taken to find NVML_LIB_PATH: ${runtime} seconds"
echo "[NOVA] Building the CUDA variant of FBGEMM_GPU ..."
export fbgemm_variant="cuda"
elif [[ $CU_VERSION = rocm* ]]; then
echo "[NOVA] Building the ROCm variant of FBGEMM_GPU ..."
export fbgemm_variant="rocm"
else
echo "[NOVA] Building the CPU variant of FBGEMM_GPU ..."
export fbgemm_variant="cpu"
fi
# Install the necessary Python eggs for building
cd "${FBGEMM_REPO}/fbgemm_gpu" || exit 1
prepare_fbgemm_gpu_build "${BUILD_ENV_NAME}"
end_time=$(date +%s)
runtime=$((end_time-start_time))
start_time=${end_time}
echo "[NOVA] Time taken to prepare the build : ${runtime} seconds / $(display_time ${runtime})"
# Reset the BUILD_FROM_NOVA flag to run setup.py for the actual build
BUILD_FROM_NOVA=0
export BUILD_FROM_NOVA
# Build FBGEMM_GPU nightly by default
if [[ ${CHANNEL} == "" ]]; then
export CHANNEL="nightly"
fi
# Build the wheel
build_fbgemm_gpu_package "${BUILD_ENV_NAME}" "${CHANNEL}" "${fbgemm_variant}"
end_time=$(date +%s)
runtime=$((end_time-start_time))
start_time=${end_time}
echo "[NOVA] Time taken to build the package: ${runtime} seconds / $(display_time ${runtime})"
# Temporary workaround - copy dist/ to root repo for smoke test
echo "[NOVA] Copying dist folder to root repo ..."
if print_exec cp -r "${FBGEMM_REPO}/fbgemm_gpu/dist" "${FBGEMM_REPO}"; then
echo "[NOVA] dist folder has been copied to ${FBGEMM_REPO}"
ls -al "${FBGEMM_REPO}/dist"
else
echo "[NOVA] Failed to copy dist/ folder to ${FBGEMM_REPO}"
exit 1
fi