forked from pytorch/TensorRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
54 lines (48 loc) · 956 Bytes
/
BUILD
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
test_suite(
name = "tests",
tests = [
":cpp_api_tests",
"//tests/core:core_tests",
],
)
test_suite(
name = "required_and_optional_tests",
tests = [
":tests",
"//tests/accuracy:accuracy_tests",
],
)
test_suite(
name = "aarch64_tests",
tests = [
"//tests/core:core_tests",
"//tests/modules:aarch64_module_tests",
],
)
test_suite(
name = "required_and_optional_aarch64_tests",
tests = [
":aarch64_tests",
"//tests/accuracy:aarch64_accuracy_tests",
],
)
test_suite(
name = "cpp_api_tests",
tests = [
"//tests/cpp:api_tests"
]
)
test_suite(
name = "python_api_tests",
tests = [
"//tests/py:test_api",
"//tests/py:test_to_backend_api",
],
)
test_suite(
name = "python_required_and_optional_tests",
tests = [
":python_api_tests",
"//tests/py:py_calibrator_tests",
],
)