We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ab781c commit aa57256Copy full SHA for aa57256
magma/Makefile
@@ -16,12 +16,21 @@ DOCKER_RUN = set -eou pipefail; docker run --rm -i \
16
magma/build_magma.sh
17
18
.PHONY: all
19
+all: magma-cuda112
20
all: magma-cuda111
21
all: magma-cuda110
22
all: magma-cuda102
23
all: magma-cuda101
24
all: magma-cuda92
25
26
+.PHONY: magma-cuda112
27
+magma-cuda112: DESIRED_CUDA := 11.2
28
+magma-cuda112: PACKAGE_NAME := magma-cuda112
29
+magma-cuda112: CUDA_POINTER_ATTR_PATCH := " - cudaPointerAttributes.patch"
30
+magma-cuda112: CUDA_ARCH_LIST += -gencode arch=compute_80,code=sm_80 -gencode arch=compute_86,code=sm_86
31
+magma-cuda112:
32
+ $(DOCKER_RUN)
33
+
34
.PHONY: magma-cuda111
35
magma-cuda111: DESIRED_CUDA := 11.1
36
magma-cuda111: PACKAGE_NAME := magma-cuda111
0 commit comments