Browse Source

More detailed error message in [z]imatcopy.c.

tags/v0.3.24
Ken Ho 3 years ago
parent
commit
df1b1f6a91
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      interface/imatcopy.c
  2. +1
    -1
      interface/zimatcopy.c

+ 1
- 1
interface/imatcopy.c View File

@@ -157,7 +157,7 @@ void CNAME( enum CBLAS_ORDER CORDER, enum CBLAS_TRANSPOSE CTRANS, blasint crows,
b = malloc(msize);
if ( b == NULL )
{
printf("Memory alloc failed\n");
printf("Memory alloc failed in imatcopy\n");
exit(1);
}



+ 1
- 1
interface/zimatcopy.c View File

@@ -186,7 +186,7 @@ void CNAME( enum CBLAS_ORDER CORDER, enum CBLAS_TRANSPOSE CTRANS, blasint crows,
b = malloc(msize);
if ( b == NULL )
{
printf("Memory alloc failed\n");
printf("Memory alloc failed in zimatcopy\n");
exit(1);
}



Loading…
Cancel
Save