Skip to content

Commit

Permalink
add docker for ubuntu1604-cuda10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
neoblizz committed Oct 18, 2019
1 parent 8feff87 commit e5e4ae6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docker/ubuntu16.04-cuda10.1/dockerfile
@@ -0,0 +1,15 @@
FROM nvidia/cuda:10.1-devel-ubuntu16.04

########################
# Install Dependencies #
########################

RUN apt-get update && apt-get install -y --no-install-recommends \
cmake git && rm -rf /var/lib/apt/lists/*

#################
# Build Gunrock #
#################

RUN git clone --recursive https://github.com/gunrock/gunrock.git && \
cd gunrock && mkdir build && cd build && cmake .. && make -j$(nproc)

0 comments on commit e5e4ae6

Please sign in to comment.