mirror of
				https://github.com/stevenrobertson/cuburn.git
				synced 2025-11-03 18:00:55 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			660 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			660 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM nvidia/cuda:8.0-runtime-ubuntu16.04
 | 
						|
 | 
						|
LABEL com.nvidia.volumes.needed="nvidia_driver"
 | 
						|
 | 
						|
ENV PATH /usr/local/nvidia/bin:${PATH}
 | 
						|
ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH}
 | 
						|
 | 
						|
RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties
 | 
						|
 | 
						|
RUN git clone --recursive http://git.tiker.net/trees/pycuda.git
 | 
						|
RUN git clone --recursive https://github.com/twobombs/cuburn.git
 | 
						|
 | 
						|
# RUN cd /pycuda&&configure&&make&&make install
 | 
						|
 | 
						|
RUN add-apt-repository universe
 | 
						|
RUN apt-get update
 | 
						|
RUN apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all
 | 
						|
 | 
						|
RUN pip install numpy scipy
 | 
						|
 |