Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hpvm-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
hpvm-release
Commits
938c0253
Commit
938c0253
authored
4 years ago
by
Hashim Sharif
Browse files
Options
Downloads
Patches
Plain Diff
Restoring hpvm_installer fixes made by Yifan
parent
c7d5c9a6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hpvm/scripts/hpvm_installer.py
+9
-7
9 additions, 7 deletions
hpvm/scripts/hpvm_installer.py
with
9 additions
and
7 deletions
hpvm/scripts/hpvm_installer.py
+
9
−
7
View file @
938c0253
...
@@ -5,10 +5,9 @@ from pathlib import Path
...
@@ -5,10 +5,9 @@ from pathlib import Path
from
subprocess
import
CalledProcessError
,
check_call
from
subprocess
import
CalledProcessError
,
check_call
from
typing
import
List
from
typing
import
List
VERSION
=
"
9.0.0
"
VERSION
=
"
9.0.0
"
URL
=
"
http://releases.llvm.org
"
URL
=
"
http://releases.llvm.org
"
WGET
=
"
wget
"
DOWNLOADER
=
"
curl
"
CLANG_DIR
=
f
"
cfe-
{
VERSION
}
.src
"
CLANG_DIR
=
f
"
cfe-
{
VERSION
}
.src
"
CLANG_TARBALL
=
f
"
{
CLANG_DIR
}
.tar.xz
"
CLANG_TARBALL
=
f
"
{
CLANG_DIR
}
.tar.xz
"
LLVM_DIR
=
f
"
llvm-
{
VERSION
}
.src
"
LLVM_DIR
=
f
"
llvm-
{
VERSION
}
.src
"
...
@@ -150,11 +149,10 @@ def prompt_args():
...
@@ -150,11 +149,10 @@ def prompt_args():
Example:
"
DCMAKE_BUILD_TYPE=Release DCMAKE_INSTALL_PREFIX=install
"
.
Example:
"
DCMAKE_BUILD_TYPE=Release DCMAKE_INSTALL_PREFIX=install
"
.
Arguments:
"""
Arguments:
"""
)
)
args
.
cmake_args
=
input
()
args
.
cmake_args
=
input
()
if
args
.
cmake_args
.
strip
()
!=
""
:
if
args
.
cmake_args
.
strip
()
!=
""
:
args
.
cmake_args
=
[
f
"
-
{
arg
}
"
for
arg
in
args
.
cmake_args
.
split
(
"
"
)]
args
.
cmake_args
=
[
f
"
-
{
arg
}
"
for
arg
in
args
.
cmake_args
.
split
(
"
"
)]
args
.
no_params
=
not
input_with_check
(
args
.
no_params
=
not
input_with_check
(
"
Download DNN weights (recommended)? [y/n]:
"
,
parse_yn
,
"
Please enter y or n
"
"
Download DNN weights (recommended)? [y/n]:
"
,
parse_yn
,
"
Please enter y or n
"
)
)
...
@@ -184,7 +182,7 @@ def check_download_llvm_clang():
...
@@ -184,7 +182,7 @@ def check_download_llvm_clang():
else
:
else
:
print
(
f
"
Downloading
{
LLVM_TARBALL
}
...
"
)
print
(
f
"
Downloading
{
LLVM_TARBALL
}
...
"
)
print
(
f
"
=============================
"
)
print
(
f
"
=============================
"
)
check_call
([
WGET
,
f
"
{
URL
}
/
{
VERSION
}
/
{
LLVM_TARBALL
}
"
]
)
download
(
f
"
{
URL
}
/
{
VERSION
}
/
{
LLVM_TARBALL
}
"
,
LLVM_TARBALL
)
check_call
([
"
tar
"
,
"
xf
"
,
LLVM_TARBALL
])
check_call
([
"
tar
"
,
"
xf
"
,
LLVM_TARBALL
])
check_call
([
"
mv
"
,
LLVM_DIR
,
"
llvm
"
])
check_call
([
"
mv
"
,
LLVM_DIR
,
"
llvm
"
])
tools
=
Path
(
"
llvm/tools
"
)
tools
=
Path
(
"
llvm/tools
"
)
...
@@ -199,7 +197,7 @@ def check_download_llvm_clang():
...
@@ -199,7 +197,7 @@ def check_download_llvm_clang():
chdir
(
tools
)
chdir
(
tools
)
print
(
f
"
Downloading
{
CLANG_TARBALL
}
...
"
)
print
(
f
"
Downloading
{
CLANG_TARBALL
}
...
"
)
print
(
f
"
=============================
"
)
print
(
f
"
=============================
"
)
check_call
([
WGET
,
f
"
{
URL
}
/
{
VERSION
}
/
{
CLANG_TARBALL
}
"
]
)
download
(
f
"
{
URL
}
/
{
VERSION
}
/
{
CLANG_TARBALL
}
"
,
CLANG_TARBALL
)
check_call
([
"
tar
"
,
"
xf
"
,
CLANG_TARBALL
])
check_call
([
"
tar
"
,
"
xf
"
,
CLANG_TARBALL
])
check_call
([
"
mv
"
,
CLANG_DIR
,
"
clang
"
])
check_call
([
"
mv
"
,
CLANG_DIR
,
"
clang
"
])
assert
Path
(
"
clang/
"
).
is_dir
(),
"
Problem with clang download. Exiting!
"
assert
Path
(
"
clang/
"
).
is_dir
(),
"
Problem with clang download. Exiting!
"
...
@@ -217,7 +215,7 @@ def check_download_model_params():
...
@@ -217,7 +215,7 @@ def check_download_model_params():
else
:
else
:
print
(
f
"
Downloading DNN model parameters:
{
MODEL_PARAMS_TAR
}
...
"
)
print
(
f
"
Downloading DNN model parameters:
{
MODEL_PARAMS_TAR
}
...
"
)
print
(
f
"
=============================
"
)
print
(
f
"
=============================
"
)
check_call
([
WGET
,
MODEL_PARAMS_LINK
,
"
-O
"
,
MODEL_PARAMS_TAR
]
)
download
(
MODEL_PARAMS_LINK
,
MODEL_PARAMS_TAR
)
print
(
print
(
f
"
Extracting DNN model parameters
{
MODEL_PARAMS_TAR
}
=>
{
MODEL_PARAMS_DIR
}
...
"
f
"
Extracting DNN model parameters
{
MODEL_PARAMS_TAR
}
=>
{
MODEL_PARAMS_DIR
}
...
"
)
)
...
@@ -313,6 +311,10 @@ def input_with_check(prompt: str, parse, prompt_when_invalid: str):
...
@@ -313,6 +311,10 @@ def input_with_check(prompt: str, parse, prompt_when_invalid: str):
return
value
return
value
def
download
(
link
:
str
,
output
:
Path
):
check_call
([
"
curl
"
,
"
-L
"
,
link
,
"
-o
"
,
output
])
def
main
():
def
main
():
from
sys
import
argv
from
sys
import
argv
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment