forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Trevor Morris
committed
Aug 28, 2019
1 parent
8190d9b
commit 782907d
Showing
7 changed files
with
235 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
# CI docker GPU TRT env | ||
# tag: v0.50 | ||
FROM nvcr.io/nvidia/tensorrt:19.07-py3 | ||
|
||
# Base scripts | ||
RUN apt-get update --fix-missing | ||
|
||
COPY install/ubuntu_install_core.sh /install/ubuntu_install_core.sh | ||
RUN bash /install/ubuntu_install_core.sh | ||
|
||
COPY install/ubuntu_install_python.sh /install/ubuntu_install_python.sh | ||
RUN bash /install/ubuntu_install_python.sh | ||
|
||
COPY install/ubuntu_install_llvm.sh /install/ubuntu_install_llvm.sh | ||
RUN bash /install/ubuntu_install_llvm.sh | ||
|
||
COPY install/ubuntu_install_opencl.sh /install/ubuntu_install_opencl.sh | ||
RUN bash /install/ubuntu_install_opencl.sh | ||
|
||
COPY install/ubuntu_install_python_package.sh /install/ubuntu_install_python_package.sh | ||
RUN bash /install/ubuntu_install_python_package.sh | ||
|
||
COPY install/ubuntu_install_sphinx.sh /install/ubuntu_install_sphinx.sh | ||
RUN bash /install/ubuntu_install_sphinx.sh | ||
|
||
# Fix recommonmark to latest version | ||
RUN git clone --depth=1 https://github.com/rtfd/recommonmark | ||
RUN cd recommonmark; python3 setup.py install | ||
|
||
# Enable doxygen for c++ doc build | ||
RUN apt-get update && apt-get install -y doxygen graphviz libprotobuf-dev protobuf-compiler | ||
|
||
COPY install/ubuntu_install_java.sh /install/ubuntu_install_java.sh | ||
RUN bash /install/ubuntu_install_java.sh | ||
|
||
COPY install/ubuntu_install_nodejs.sh /install/ubuntu_install_nodejs.sh | ||
RUN bash /install/ubuntu_install_nodejs.sh | ||
|
||
COPY install/ubuntu_install_rocm.sh /install/ubuntu_install_rocm.sh | ||
RUN bash /install/ubuntu_install_rocm.sh | ||
|
||
COPY install/ubuntu_install_opengl.sh /install/ubuntu_install_opengl.sh | ||
RUN bash /install/ubuntu_install_opengl.sh | ||
|
||
# DL Frameworks | ||
COPY install/ubuntu_install_mxnet.sh /install/ubuntu_install_mxnet.sh | ||
RUN bash /install/ubuntu_install_mxnet.sh | ||
|
||
COPY install/ubuntu_install_gluoncv.sh /install/ubuntu_install_gluoncv.sh | ||
RUN bash /install/ubuntu_install_gluoncv.sh | ||
|
||
COPY install/ubuntu_install_coreml.sh /install/ubuntu_install_coreml.sh | ||
RUN bash /install/ubuntu_install_coreml.sh | ||
|
||
COPY install/ubuntu_install_tensorflow.sh /install/ubuntu_install_tensorflow.sh | ||
RUN bash /install/ubuntu_install_tensorflow.sh | ||
|
||
COPY install/ubuntu_install_keras.sh /install/ubuntu_install_keras.sh | ||
RUN bash /install/ubuntu_install_keras.sh | ||
|
||
COPY install/ubuntu_install_darknet.sh /install/ubuntu_install_darknet.sh | ||
RUN bash /install/ubuntu_install_darknet.sh | ||
|
||
COPY install/ubuntu_install_onnx.sh /install/ubuntu_install_onnx.sh | ||
RUN bash /install/ubuntu_install_onnx.sh | ||
|
||
COPY install/ubuntu_install_tflite.sh /install/ubuntu_install_tflite.sh | ||
RUN bash /install/ubuntu_install_tflite.sh | ||
|
||
COPY install/ubuntu_install_caffe2.sh /install/ubuntu_install_caffe2.sh | ||
RUN bash /install/ubuntu_install_caffe2.sh | ||
|
||
RUN pip3 install Pillow | ||
|
||
COPY install/ubuntu_install_vulkan.sh /install/ubuntu_install_vulkan.sh | ||
RUN bash /install/ubuntu_install_vulkan.sh | ||
|
||
# AutoTVM deps | ||
COPY install/ubuntu_install_redis.sh /install/ubuntu_install_redis.sh | ||
RUN bash /install/ubuntu_install_redis.sh | ||
|
||
COPY install/ubuntu_install_antlr.sh /install/ubuntu_install_antlr.sh | ||
RUN bash /install/ubuntu_install_antlr.sh | ||
|
||
# NNPACK deps | ||
COPY install/ubuntu_install_nnpack.sh /install/ubuntu_install_nnpack.sh | ||
RUN bash /install/ubuntu_install_nnpack.sh | ||
|
||
# Environment variables | ||
ENV PATH=/usr/local/nvidia/bin:${PATH} | ||
ENV PATH=/usr/local/cuda/bin:${PATH} | ||
ENV CPLUS_INCLUDE_PATH=/usr/local/cuda/include:${CPLUS_INCLUDE_PATH} | ||
ENV C_INCLUDE_PATH=/usr/local/cuda/include:${C_INCLUDE_PATH} | ||
ENV LIBRARY_PATH=/usr/local/cuda/lib64:/usr/local/nvidia/lib64:${LIBRARY_PATH} | ||
ENV LD_LIBRARY_PATH=/usr/local/cuda/lib64:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} | ||
|
||
ENV LD_LIBRARY_PATH=/opt/rocm/lib:${LD_LIBRARY_PATH} | ||
ENV PATH=/node_modules/.bin:${PATH} | ||
ENV VULKAN_SDK=/usr/local/VulkanSDK/1.0.65.0/x86_64 | ||
ENV PATH=${PATH}:${VULKAN_SDK}/bin | ||
ENV LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${VULKAN_SDK}/lib | ||
ENV VK_LAYER_PATH=${VULKAN_SDK}/etc/explicit_layer.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/bash | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
set -e | ||
set -u | ||
|
||
export PYTHONPATH=nnvm/python:python:topi/python | ||
export LD_LIBRARY_PATH="build:${LD_LIBRARY_PATH:-}" | ||
|
||
rm -rf python/tvm/*.pyc python/tvm/*/*.pyc python/tvm/*/*/*.pyc | ||
|
||
TVM_FFI=ctypes python3 -m nose -v tests/python/tensorrt |