Updated beta == zero semantics of mulsc.

Details:
- Updated beta == zero semantics of mulsc. Hopefully this is the last
  operation that needed updating.
- Added Devin to CREDITS file.
This commit is contained in:
Field G. Van Zee
2013-02-14 10:42:56 -06:00
parent 722b66c7dc
commit 2c836adadc
3 changed files with 12 additions and 6 deletions

View File

@@ -7,13 +7,13 @@ The BLIS framework was primarily authored by
Field Van Zee (The University of Texas at Austin)
but many others contributed input and feedback as it was initially
conceived, designed, and developed, including:
but many others have contributed input and feedback, including:
John Gunnels (IBM, T.J. Watson Research Center)
Jeff Hammond (Argonne National Laboratory)
Francisco Igual (Universidad Complutense de Madrid)
Lee Killough (Appro International)
Devin Matthews (The University of Texas at Austin)
Tze Meng Low (The University of Texas at Austin)
Bryan Marker (The University of Texas at Austin)
Rhys Ulerich (The University of Texas at Austin)

View File

@@ -97,9 +97,15 @@ void PASTEMAC2(chx,chy,varname)( \
ctype_y* psi_cast = psi; \
ctype_x chi_conj; \
\
PASTEMAC2(chx,chx,copycjs)( conjchi, *chi_cast, chi_conj ); \
\
PASTEMAC2(chx,chy,scals)( chi_conj, *psi_cast ); \
if ( PASTEMAC(chx,eq0)( *chi_cast ) ) \
{ \
PASTEMAC(chy,set0s)( *psi_cast ); \
} \
else \
{ \
PASTEMAC2(chx,chx,copycjs)( conjchi, *chi_cast, chi_conj ); \
PASTEMAC2(chx,chy,scals)( chi_conj, *psi_cast ); \
} \
}

View File

@@ -1 +1 @@
0.0.2-9
0.0.2-10