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
40449dfa
Commit
40449dfa
authored
4 years ago
by
Hashim Sharif
Browse files
Options
Downloads
Plain Diff
Merging
parents
d4ff8a06
1389fd9d
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+140
-18
140 additions, 18 deletions
.gitignore
README.md
+9
-1
9 additions, 1 deletion
README.md
hpvm/env.yaml
+25
-0
25 additions, 0 deletions
hpvm/env.yaml
hpvm/projects/hpvm-tensor-rt/CMakeLists.txt
+0
-1
0 additions, 1 deletion
hpvm/projects/hpvm-tensor-rt/CMakeLists.txt
with
174 additions
and
20 deletions
.gitignore
+
140
−
18
View file @
40449dfa
*.o
*.so
*.dot
<<<<<<< HEAD
JITTests.exports
llvm/include/llvm/Config/config.h
llvm/include/llvm/Config/llvm-config.h
llvm/include/llvm/Support/DataTypes.h
llvm/test/VISC/parboil/benchmarks/*/run
llvm/test/VISC/parboil/benchmarks/*/build
llvm/build
llvm/install
build*/
install/
=======
*.pyc
hpvm/build/
hpvm/install/
hpvm/llvm/
...
...
@@ -22,4 +5,143 @@ hpvm/llvm-*.src.tar.xz
hpvm/llvm-*.src/
hpvm/llvm_patches/**/*.patch
>>>>>>> a9f09dd1d7c769b6e9bef9dca334a9c0761f2136
# Below is taken from Python.gitignore: https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
This diff is collapsed.
Click to expand it.
README.md
+
9
−
1
View file @
40449dfa
...
...
@@ -31,10 +31,18 @@ The following components are required to be installed on your machine to build H
*
In addition, each version of CUDA-nvcc requires GCC to be not newer than a certain version.
See
[
here
](
https://gist.github.com/ax3l/9489132
)
for the support matrix.
*
CMake (>=3.17)
*
Python (>=3.7) with Pip
*
GNU Make (>=3.79)
*
OpenCL (>=1.0.0)
*
CUDA (>=9.1)
*
Python (==3.6) with pip (>=20)
Python must be strictly 3.6 (any subversion between 3.6.0~3.6.13).
Alternatively, if you use Anaconda for package management,
we provide a conda environment file that covers all Python and Python package requirements:
```
bash
conda
env
create
-n
hpvm
-f
hpvm/env.yaml
```
## Supported Targets
...
...
This diff is collapsed.
Click to expand it.
hpvm/env.yaml
0 → 100644
+
25
−
0
View file @
40449dfa
name
:
hpvm
channels
:
-
pytorch
-
defaults
dependencies
:
-
jinja2=2.11
-
jsonpickle=2
-
keras==2.1.6
-
matplotlib=3.3
-
networkx=2.5
-
pandas=1.1
-
python==3.6.13
-
pip
-
pytorch=1.7
-
torchvision=0.8
-
tqdm=4.59
-
scipy==1.1.0
-
pip
:
-
argparse==1.4
-
onnx==1.8
-
onnx-simplifier==0.3
-
opentuner==0.8.3
-
sqlalchemy==1.3.0
-
tensorflow==1.14.0
-
tensorflow-gpu==1.14.0
This diff is collapsed.
Click to expand it.
hpvm/projects/hpvm-tensor-rt/CMakeLists.txt
+
0
−
1
View file @
40449dfa
...
...
@@ -22,7 +22,6 @@ configure_file(
)
# -- Default include directories
find_package
(
CUDNN 7 EXACT REQUIRED
)
# Include CUDNN_INCLUDE_PATH, then link CUDNN_LIBRARY_PATH
set
(
INCLUDES
${
CMAKE_CUDA_TOOLKIT_INCLUDE_DIRECTORIES
}
...
...
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