mirror of
https://github.com/amd/blis.git
synced 2026-05-05 06:51:11 +00:00
Added individual operation overrides in testsuite.
Details: - Updated the testsuite driver so that setting one or more individual operation test switches to "2" in input.operations will enable ONLY those operations and disable all others, regardless of the values of the section overrides and other operation switches. This makes it every easy to quickly test only one or two operations, and equally easy to revert back to the previous combination of operation tests. - Added more comments to input.operations describing the use of individual "enable only" overrides.
This commit is contained in:
@@ -117,7 +117,7 @@ void libblis_test_axpy2v
|
||||
if ( op->test_done == TRUE ) return;
|
||||
|
||||
// Return early if operation is disabled.
|
||||
if ( op->op_switch == DISABLE_ALL ||
|
||||
if ( libblis_test_op_is_disabled( op ) ||
|
||||
op->ops->l1f_over == DISABLE_ALL ) return;
|
||||
|
||||
// Call dependencies first.
|
||||
|
||||
Reference in New Issue
Block a user