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:
Field G. Van Zee
2014-07-22 14:33:01 -05:00
parent a41e68e09e
commit 1785efb542
2 changed files with 4 additions and 1 deletions

View File

@@ -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 );
}

View File

@@ -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).