mirror of
https://github.com/amd/blis.git
synced 2026-05-11 09:39:59 +00:00
Minor improvements to invertd and setd.
Details: - Added missing call to invertd_check() from front-end. - Changed setd front-end call of scald_check() to setd_check().
This commit is contained in:
@@ -40,6 +40,9 @@
|
||||
//
|
||||
void bli_invertd( obj_t* x )
|
||||
{
|
||||
if ( bli_error_checking_is_enabled() )
|
||||
bli_invertd_check( x );
|
||||
|
||||
bli_invertd_unb_var1( x );
|
||||
}
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ void bli_setd( obj_t* beta,
|
||||
obj_t beta_local;
|
||||
|
||||
if ( bli_error_checking_is_enabled() )
|
||||
bli_scald_check( beta, x );
|
||||
bli_setd_check( beta, x );
|
||||
|
||||
// Use the datatype of x as the target type for beta (since we do
|
||||
// not assume mixed domain/type support is enabled).
|
||||
|
||||
Reference in New Issue
Block a user