This is a GPU server of the Department of Computer Engineering, University of Peradeniya.
You can use this server using the LDAP login for ce.pdn.ac.lk undergraduates (which is used for CO top floor lab, Aiken and Tesla) without sudo access.
ssh e14000@kepler.ce.pdn.ac.lkssh -J e14000@tesla.ce.pdn.ac.lk e14000@kepler.ce.pdn.ac.lkWe store frequently used datasets inside the kepler.ce.pdn.ac.lk local storage for easy access. You can access these by the following command:
ls /storage/datasets/These datasets are in the read only mode. You can use these datasets as the input for your tasks but you have to output the results to your home directory. The following datasets are stored at the moment.
If you have suggestions for what datasets should be made available on this server, please send a request via email available in https://www.cs.umd.edu/~gihan/contact/ address.
ls /storage/datasetsnvcc code.cu -arch=sm_35The -arch=sm_35 flag is required to compile code properly on this server.
NVIDIA Tesla K40c is a Kepler GPU (compute capability 3.5). In practice, this limits support to the CUDA 11.x line. NVIDIA deprecated Kepler support in CUDA 11.4 and removed it entirely in CUDA 12.0.
A recommended PyTorch setup for this GPU is PyTorch 1.12.1 with torchvision 0.13.1, torchaudio 0.12.1, and CUDA 11.3:
conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.3 -c pytorchsudo singularity config fakeroot --add eXXYYYeyyxxx@kepler:~$ wget https://raw.githubusercontent.com/cepdnaclk/singularity-deployment/main/base.defeyyxxx@kepler:~$ singularity build --fakeroot base.sif base.defeyyxxx@kepler:~$ singularity exec base.sif <your-command>If you need to learn more, go to: https://github.com/cepdnaclk/singularity-deployment