File: benchmark_all_other_test.py

package info (click to toggle)
pytorch-cuda 2.6.0%2Bdfsg-7
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid, trixie
  • size: 161,620 kB
  • sloc: python: 1,278,832; cpp: 900,322; ansic: 82,710; asm: 7,754; java: 3,363; sh: 2,811; javascript: 2,443; makefile: 597; ruby: 195; xml: 84; objc: 68
file content (36 lines) | stat: -rw-r--r-- 660 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from pt import (  # noqa: F401
    add_test,
    ao_sparsifier_test,
    as_strided_test,
    batchnorm_test,
    binary_test,
    cat_test,
    channel_shuffle_test,
    chunk_test,
    conv_test,
    diag_test,
    embeddingbag_test,
    fill_test,
    gather_test,
    groupnorm_test,
    hardsigmoid_test,
    hardswish_test,
    instancenorm_test,
    interpolate_test,
    layernorm_test,
    linear_test,
    matmul_test,
    nan_to_num_test,
    pool_test,
    remainder_test,
    softmax_test,
    split_test,
    sum_test,
    tensor_to_test,
)

import operator_benchmark as op_bench


if __name__ == "__main__":
    op_bench.benchmark_runner.main()