You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .circleci/docker/common/install_base.sh
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,20 @@ install_ubuntu() {
15
15
elif [[ "$UBUNTU_VERSION"=="20.04"* ]];then
16
16
cmake3="cmake=3.16*"
17
17
maybe_libiomp_dev=""
18
+
elif [[ "$UBUNTU_VERSION"=="22.04"* ]];then
19
+
cmake3="cmake=3.22*"
20
+
maybe_libiomp_dev=""
18
21
else
19
22
cmake3="cmake=3.5*"
20
23
maybe_libiomp_dev="libiomp-dev"
21
24
fi
22
25
26
+
if [[ "$CLANG_VERSION"== 12 ]];then
27
+
libomp_dev="libomp-12-dev"
28
+
else
29
+
libomp_dev=""
30
+
fi
31
+
23
32
# TODO: Remove this once nvidia package repos are back online
24
33
# Comment out nvidia repositories to prevent them from getting apt-get updated, see https://github.com/pytorch/pytorch/issues/74968
0 commit comments