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

This commit is contained in:
Ken Ho 2023-05-12 09:41:52 -07:00
parent 7a86c437b5
commit df1b1f6a91
2 changed files with 2 additions and 2 deletions

View File

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

View File

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