Skip to content
Snippets Groups Projects
Commit f3a5ba3b authored by Yifan Zhao's avatar Yifan Zhao
Browse files

Added global conda env for HPVM, updated .gitignore and README

parent 2d274ce2
No related branches found
No related tags found
No related merge requests found
*.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/build/
hpvm/install/ hpvm/install/
hpvm/llvm/ hpvm/llvm/
...@@ -22,4 +5,143 @@ hpvm/llvm-*.src.tar.xz ...@@ -22,4 +5,143 @@ hpvm/llvm-*.src.tar.xz
hpvm/llvm-*.src/ hpvm/llvm-*.src/
hpvm/llvm_patches/**/*.patch 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/
...@@ -31,10 +31,18 @@ The following components are required to be installed on your machine to build H ...@@ -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. * 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. See [here](https://gist.github.com/ax3l/9489132) for the support matrix.
* CMake (>=3.17) * CMake (>=3.17)
* Python (>=3.7) with Pip
* GNU Make (>=3.79) * GNU Make (>=3.79)
* OpenCL (>=1.0.0) * OpenCL (>=1.0.0)
* CUDA (>=9.1) * 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 ## Supported Targets
......
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment