Lines Matching refs:test_func
30 def _test_worker(test_func): argument
32 test_func, warmup=500, rep=100, fast_flush=False
40 def test_func(x=x.to_dense(), y=y): function
43 return _test_worker(test_func)
47 def test_func(x=x, y=y): function
50 return _test_worker(test_func)
56 def test_func(x=x, y=y): function
61 return _test_worker(test_func)
67 def test_func(x=x, y=y, meta=meta): function
70 return _test_worker(test_func)
80 def test_func(x=x, y=y): function
83 return _test_worker(test_func)
93 def test_func(x=x, y=y): function
96 return _test_worker(test_func)
102 def test_func(x=x, y=y): function
108 return _test_worker(test_func)
114 def test_func(x=x, y=y.transpose(-2, -1)): function
117 return _test_worker(test_func)
354 test_func = globals()["test_" + op] variable
378 time_ms, performance_tflops = test_func(x, y, **meta)