An open API service indexing awesome lists of open source software.

https://github.com/eduidl/tvm-dockerfile

Dockerfile for TVM https://github.com/dmlc/tvm
https://github.com/eduidl/tvm-dockerfile

dockerfile tvm

Last synced: 4 months ago
JSON representation

Dockerfile for TVM https://github.com/dmlc/tvm

Awesome Lists containing this project

README

        

# TVM Dockerfile
- Dockerfile for using TVM compiler with GPU (https://github.com/dmlc/tvm)
- ref: https://github.com/dmlc/tvm/blob/master/docker/Dockerfile.demo_gpu

## Build of TVM
```sh
$ git clone https://github.com/dmlc/tvm.git --recursive
$ cp config.cmake ./tvm
$ docker build -t tvm docker
$ ./opendocker.sh tvm
##### in docker container #####
$ mkdir build
$ cd build
$ cmake ../tvm
$ make
```