Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Add support for CUDA 10.1 environment #74

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ PY3_MINOR = $(shell $(PYTHON) -c "import sys; print(sys.version_info.minor)")
TORCH_CUDA_ = http://download.pytorch.org/whl/cpu/torch-1.2.0%2Bcpu-cp3${PY3_MINOR}-cp3${PY3_MINOR}m-manylinux1_x86_64.whl
TORCH_CUDA_9.2 = http://download.pytorch.org/whl/cu92/torch-1.2.0%2Bcu92-cp3${PY3_MINOR}-cp3${PY3_MINOR}m-manylinux1_x86_64.whl
TORCH_CUDA_10.0 = http://download.pytorch.org/whl/cu100/torch-1.2.0-cp3${PY3_MINOR}-cp3${PY3_MINOR}m-manylinux1_x86_64.whl
TORCH_CUDA_10.1 = http://download.pytorch.org/whl/cu100/torch-1.2.0-cp3${PY3_MINOR}-cp3${PY3_MINOR}m-manylinux1_x86_64.whl
TORCH_Linux ?= $(TORCH_CUDA_$(CUDA))
TORCH_Darwin = torch
TORCH ?= $(TORCH_$(shell uname -s))
Expand Down