Remove erroneous early exit for alpha=(1,0) that skipped conjugation

This commit is contained in:
Martin Kroeker 2024-01-26 14:32:10 +01:00 committed by GitHub
parent 776dbf66fc
commit 47218d827f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -40,7 +40,6 @@ int CNAME(BLASLONG rows, BLASLONG cols, FLOAT alpha_r, FLOAT alpha_i, FLOAT *a,
if ( rows <= 0 ) return(0);
if ( cols <= 0 ) return(0);
if ( alpha_r == 1.0 && alpha_i == 0.0 ) return (0);
aptr = a;
lda *= 2;