コード例 #1
0
ファイル: test_scal2m.c プロジェクト: ipolkovn/blis
void libblis_test_scal2m_deps( test_params_t* params, test_op_t* op )
{
	libblis_test_randm( params, &(op->ops->randm) );
	libblis_test_normfm( params, &(op->ops->normfm) );
	libblis_test_subm( params, &(op->ops->subm) );
	libblis_test_copym( params, &(op->ops->copym) );
	libblis_test_scalm( params, &(op->ops->scalm) );
}
コード例 #2
0
ファイル: test_subm.c プロジェクト: jeffhammond/blis
void libblis_test_subm_deps
     (
       test_params_t* params,
       test_op_t*     op
     )
{
	libblis_test_setm( params, &(op->ops->setm) );
	libblis_test_normfm( params, &(op->ops->normfm) );
}
コード例 #3
0
ファイル: test_copym.c プロジェクト: figual/blis
void libblis_test_copym_deps
     (
       thread_data_t* tdata,
       test_params_t* params,
       test_op_t*     op
     )
{
	libblis_test_randm( tdata, params, &(op->ops->randm) );
	libblis_test_subm( tdata, params, &(op->ops->subm) );
	libblis_test_normfm( tdata, params, &(op->ops->normfm) );
}