Browse Source

Might as well use double for NNK

pull/4116/head
Martin Kroeker GitHub 2 years ago
parent
commit
3ea0ea4843
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      interface/syrk.c

+ 2
- 2
interface/syrk.c View File

@@ -107,7 +107,7 @@ void NAME(char *UPLO, char *TRANS,
FLOAT *sa, *sb;

#ifdef SMP
BLASLONG NNK;
double NNK;
#ifdef USE_SIMPLE_THREADED_LEVEL3
#ifndef COMPLEX
#ifdef XDOUBLE
@@ -232,7 +232,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, enum CBLAS_TRANSPOSE Tr
FLOAT *sa, *sb;

#ifdef SMP
BLASLONG NNK;
double NNK;

#ifdef USE_SIMPLE_THREADED_LEVEL3
#ifndef COMPLEX


Loading…
Cancel
Save