Skip to content
Snippets Groups Projects
Commit 35b07849 authored by Prakalp Srivastava's avatar Prakalp Srivastava
Browse files

Update README.md

parent 9adf0ef5
No related branches found
No related tags found
No related merge requests found
# HPVM # HPVM
## Dependencies
You would need to download and install the following components for using AVX and NVIDIA GPUs to speed up your programs
* Intel OpenCL SDK for Linux from [software.intel.com/sdk/opencl](software.intel.com/sdk/opencl). Follow the installation instructions (no special requirements).
* CUDA
## Build ## Build
```shell ```shell
# Get dependencies # Get dependencies
cd llvm/projects cd llvm/projects
git pull https://github.com/llvm-mirror/compiler-rt git pull https://github.com/llvm-mirror/compiler-rt
git checkout release_39 git checkout release_40
cd ../.. cd ../..
# Build # Build
mkdir install
mkdir build && cd build mkdir build && cd build
cmake ../llvm cmake ../llvm -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD="X86;NVPTX" -DCMAKE_INSTALL_PREFIX=../install
make -j make -j<number of threads you want to use to build hpvm>
``` ```
\ No newline at end of file
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