Browse Source

Adapt to having only a subset of variable types supported

tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
93454022a9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      lapack/getrf/Makefile

+ 13
- 0
lapack/getrf/Makefile View File

@@ -17,6 +17,19 @@ ZBLASOBJS += zgetrf_parallel.$(SUFFIX)
XBLASOBJS += xgetrf_parallel.$(SUFFIX)
endif

ifeq "$(or $(BUILD_SINGLE),$(BUILD_DOUBLE))" ""
SBLASOBJS=
endif
ifneq ($(BUILD_DOUBLE),1)
DBLASOBJS=
endif
ifeq "$(or $(BUILD_COMPLEX),$(BUILD_COMPLEX16))" ""
CBLASOBJS=
endif
ifneq ($(BUILD_COMPLEX16),1)
ZBLASOBJS=
endif

ifeq ($(USE_OPENMP), 1)
GETRF_SRC = getrf_parallel_omp.c
else


Loading…
Cancel
Save