diff options
| author | Rohit Goswami <rog32@hi.is> | 2023-01-15 14:28:45 +0530 |
|---|---|---|
| committer | Rohit Goswami <rog32@hi.is> | 2023-03-04 15:41:53 +0000 |
| commit | 1e22f705ce2aaa952e5ea7b24473ed0a18599a5f (patch) | |
| tree | a99da291b710c6429d9e95ebfd67107b1ede806a /benchmarks | |
| parent | 857c64a95339bd937fbcc5398246fd2dcf78f3ab (diff) | |
| download | numpy-1e22f705ce2aaa952e5ea7b24473ed0a18599a5f.tar.gz | |
BENCH: Add real and round ufuncs
Diffstat (limited to 'benchmarks')
| -rw-r--r-- | benchmarks/benchmarks/bench_ufunc.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/benchmarks/bench_ufunc.py b/benchmarks/benchmarks/bench_ufunc.py index 138f2e9a0..78c515018 100644 --- a/benchmarks/benchmarks/bench_ufunc.py +++ b/benchmarks/benchmarks/bench_ufunc.py @@ -14,9 +14,9 @@ ufuncs = ['abs', 'absolute', 'add', 'arccos', 'arccosh', 'arcsin', 'arcsinh', 'less_equal', 'log', 'log10', 'log1p', 'log2', 'logaddexp', 'logaddexp2', 'logical_and', 'logical_not', 'logical_or', 'logical_xor', 'matmul', 'maximum', 'minimum', 'mod', 'modf', 'multiply', - 'negative', 'nextafter', 'not_equal', 'positive', 'power', - 'rad2deg', 'radians', 'reciprocal', 'remainder', 'right_shift', - 'rint', 'sign', 'signbit', 'sin', 'sinh', 'spacing', 'sqrt', + 'negative', 'nextafter', 'not_equal', 'positive', 'power', 'rad2deg', + 'radians', 'real', 'reciprocal', 'remainder', 'right_shift', + 'rint', 'round', 'sign', 'signbit', 'sin', 'sinh', 'spacing', 'sqrt', 'square', 'subtract', 'tan', 'tanh', 'true_divide', 'trunc'] |
