Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/torch7.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/TH/generic/THBlas.h')
-rw-r--r--lib/TH/generic/THBlas.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/TH/generic/THBlas.h b/lib/TH/generic/THBlas.h
index 9e14f5a..a49d79c 100644
--- a/lib/TH/generic/THBlas.h
+++ b/lib/TH/generic/THBlas.h
@@ -1,7 +1,7 @@
#ifndef TH_GENERIC_FILE
#define TH_GENERIC_FILE "generic/THBlas.h"
#else
-
+# ifndef TH_GENERIC_NO_MATH
/* Level 1 */
TH_API void THBlas_(swap)(long n, real *x, long incx, real *y, long incy);
TH_API void THBlas_(scal)(long n, real a, real *x, long incx);
@@ -15,5 +15,5 @@ TH_API void THBlas_(ger)(long m, long n, real alpha, real *x, long incx, real *y
/* Level 3 */
TH_API void THBlas_(gemm)(char transa, char transb, long m, long n, long k, real alpha, real *a, long lda, real *b, long ldb, real beta, real *c, long ldc);
-
+# endif
#endif