-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from owl-project/development
Development
- Loading branch information
Showing
36 changed files
with
830 additions
and
451 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,36 @@ | ||
FROM nvidia/cuda:10.2-runtime-ubuntu18.04 | ||
|
||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends --allow-downgrades --allow-change-held-packages \ | ||
build-essential \ | ||
cmake \ | ||
git \ | ||
curl \ | ||
vim \ | ||
wget \ | ||
ca-certificates \ | ||
libjpeg-dev \ | ||
libpng-dev \ | ||
strace | ||
|
||
|
||
RUN apt-get -qq update && apt-get -qq -y install curl bzip2 \ | ||
&& curl -sSL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh \ | ||
&& bash /tmp/miniconda.sh -bfp /usr/local \ | ||
&& rm -rf /tmp/miniconda.sh \ | ||
&& conda install -y python=3 \ | ||
&& conda update conda \ | ||
&& apt-get -qq -y remove curl bzip2 \ | ||
&& apt-get -qq -y autoremove \ | ||
&& apt-get autoclean \ | ||
&& rm -rf /var/lib/apt/lists/* /var/log/dpkg.log \ | ||
&& conda clean --all --yes | ||
|
||
ENV PATH /opt/conda/bin:$PATH | ||
|
||
RUN pip install visii | ||
|
||
COPY nvidia/* /usr/lib/x86_64-linux-gnu/ | ||
|
||
WORKDIR "/code" | ||
|
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,6 @@ | ||
mkdir nvidia | ||
cd nvidia/ | ||
cp /usr/lib/x86_64-linux-gnu/libnvoptix.so.1 . | ||
cp /usr/lib/x86_64-linux-gnu/*nvidia* . | ||
cd ../ | ||
cp ../examples/requirements.txt . |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Submodule owl
updated
52 files
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
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
Oops, something went wrong.