Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
deepspeed
Commits
e0f5cc68
Unverified
Commit
e0f5cc68
authored
Mar 11, 2020
by
Jeff Rasley
Committed by
GitHub
Mar 11, 2020
Browse files
add skip reqs flag (#133)
parent
259f894a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
install.sh
install.sh
+13
-3
No files found.
install.sh
View file @
e0f5cc68
...
...
@@ -22,6 +22,7 @@ hostfile (hostfile: /job/hostfile). If no hostfile exists, will only install loc
-m, --pip_mirror Use the specified pip mirror (default: the default pip mirror)
-H, --hostfile Path to MPI-style hostfile (default: /job/hostfile)
-a, --apex_commit Install a specific commit hash of apex, instead of the one deepspeed points to
-k, --skip_requirements Skip installing DeepSpeed requirements
-h, --help This help text
"""
}
...
...
@@ -36,6 +37,7 @@ entire_dlts_job=1
hostfile
=
/job/hostfile
pip_mirror
=
""
apex_commit
=
""
skip_requirements
=
0
while
[[
$#
-gt
0
]]
do
...
...
@@ -71,6 +73,10 @@ case $key in
shift
shift
;;
-k
|
--skip_requirements
)
skip_requirements
=
1
;
shift
;;
-H
|
--hostfile
)
hostfile
=
$2
if
[
!
-f
$2
]
;
then
...
...
@@ -122,8 +128,10 @@ if [ ! -f $hostfile ]; then
local_only
=
1
fi
# Ensure dependencies are installed locally
$PIP_SUDO
$PIP_INSTALL
-r
requirements.txt
if
[
"
$skip_requirements
"
==
"0"
]
;
then
# Ensure dependencies are installed locally
$PIP_SUDO
$PIP_INSTALL
-r
requirements.txt
fi
# Build wheels
if
[
"
$third_party_install
"
==
"1"
]
;
then
...
...
@@ -172,7 +180,9 @@ else
pdsh
-w
$hosts
"if [ -d
$tmp_wheel_path
]; then rm
$tmp_wheel_path
/*.whl; else mkdir -pv
$tmp_wheel_path
; fi"
pdcp
-w
$hosts
requirements.txt
${
tmp_wheel_path
}
/
pdsh
-w
$hosts
"
$PIP_SUDO
$PIP_INSTALL
-r
${
tmp_wheel_path
}
/requirements.txt"
if
[
"
$skip_requirements
"
==
"0"
]
;
then
pdsh
-w
$hosts
"
$PIP_SUDO
$PIP_INSTALL
-r
${
tmp_wheel_path
}
/requirements.txt"
fi
if
[
"
$third_party_install
"
==
"1"
]
;
then
pdsh
-w
$hosts
"
$PIP_SUDO
pip uninstall -y apex"
pdcp
-w
$hosts
third_party/apex/dist/apex
*
.whl
$tmp_wheel_path
/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment