Skip to content

Commit b5c324a

Browse files
committed
feat: Add functionality for tests to use precompiled libraries
Signed-off-by: Dheeraj Peri <peri.dheeraj@gmail.com>
1 parent 9860f85 commit b5c324a

File tree

11 files changed

+44
-20
lines changed

11 files changed

+44
-20
lines changed

WORKSPACE

+7
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ git_repository(
3131
shallow_since = "1570114335 -0400",
3232
)
3333

34+
# External dependency for trtorch if you already have precompiled binaries.
35+
# This is currently used in pytorch NGC container CI testing.
36+
local_repository(
37+
name = "trtorch",
38+
path = "/opt/pytorch/trtorch"
39+
)
40+
3441
# CUDA should be installed on the system locally
3542
new_local_repository(
3643
name = "cuda",

tests/BUILD

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
config_setting(
2+
name = "ci_build_testing",
3+
values = {
4+
"define": "trtorch_src=pre_built"
5+
}
6+
)
7+
18
test_suite(
29
name = "tests",
310
tests = [

tests/README.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,37 @@ The goal of Converter tests are to tests individual converters againsts specific
66

77
Module tests are designed to test the compiler against common network architectures and verify the integration of converters together into a single engine.
88

9+
In addition to the above, we have lowering tests (`//core/lowering`) which test the functionality of lowering passes and partitioning tests (`//core/partitioning `) which test different cases of torch fallback on test networks.
10+
911
You can run the whole test suite with bazel. But be aware you may exhaust GPU memory (this may be seen as a cuDNN initialization error) running them naively, you therefore may need to limit the number of concurrent tests. Also because the inputs to tests are random it may make sense to run tests a few times.
1012

11-
Here are some settings that work well the current test suite on a TITAN V.
13+
Here are some settings that we usually test with:
1214

1315
```
1416
bazel test //tests --compilation_mode=dbg --test_output=errors --jobs=4 --runs_per_test=5
1517
```
18+
19+
`--runs_per_test` is optional and can be performed to check if numerical issues in outputs persist across multiple runs.
20+
21+
`--jobs=4` is useful and is sometimes required to prevent too many processes to use GPU memory and cause CUDA out of memory issues.
22+
23+
### Testing using pre-built TRTorch library
24+
25+
Currently, the default strategy when we run all the tests (`bazel test //tests`) is to build the testing scripts along with the full TRTorch library (`libtrtorch.so`) from scratch. This can lead to increased testing time and might not be needed incase you already have a pre-built TRTorch library that you want to link against.
26+
27+
In order to **not** build the entire TRTorch library and only build the test scripts, please use the following command.
28+
29+
```
30+
bazel test //tests --compilation_mode=dbg --test_output=summary --define trtorch_src=pre_built --jobs 2
31+
```
32+
33+
The flag `--define trtorch_src=pre_built` signals bazel to use pre-compiled library as an external dependency for tests. The pre-compiled library path is defined as a `local_repository` rule in root `WORKSPACE` file (`https://github.com/NVIDIA/TRTorch/blob/master/WORKSPACE`).
34+
35+
```
36+
# External dependency for trtorch if you already have precompiled binaries.
37+
# This is currently used in pytorch NGC container CI testing.
38+
local_repository(
39+
name = "trtorch",
40+
path = "/opt/pytorch/trtorch"
41+
)
42+
```

tests/core/conversion/converters/converter_test.bzl

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ def converter_test(name, visibility = None):
55
visibility = visibility,
66
deps = [
77
"//tests/util",
8-
"//core",
98
"@googletest//:gtest_main",
109
] + select({
1110
":use_pre_cxx11_abi": ["@libtorch_pre_cxx11_abi//:libtorch"],

tests/core/conversion/evaluators/evaluator_test.bzl

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ def evaluator_test(name, visibility = None):
55
visibility = visibility,
66
deps = [
77
"//tests/util",
8-
"//core",
98
"@googletest//:gtest_main",
109
] + select({
1110
":use_pre_cxx11_abi": ["@libtorch_pre_cxx11_abi//:libtorch"],

tests/core/lowering/BUILD

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ cc_test(
1616
srcs = ["test_module_fallback_passes.cpp"],
1717
deps = [
1818
"//tests/util",
19-
"//core",
2019
"@googletest//:gtest_main",
2120
] + select({
2221
":use_pre_cxx11_abi": ["@libtorch_pre_cxx11_abi//:libtorch"],

tests/core/lowering/lowering_test.bzl

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ def lowering_test(name, visibility = None):
55
visibility = visibility,
66
deps = [
77
"//tests/util",
8-
"//core",
98
"@googletest//:gtest_main",
109
] + select({
1110
":use_pre_cxx11_abi": ["@libtorch_pre_cxx11_abi//:libtorch"],

tests/core/partitioning/BUILD

+1-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ cc_test(
3535
srcs = ["test_fallback_graph_output.cpp"],
3636
deps = [
3737
"//tests/util",
38-
"//core",
3938
"@googletest//:gtest_main",
4039
] + select({
4140
":use_pre_cxx11_abi": ["@libtorch_pre_cxx11_abi//:libtorch"],
@@ -51,7 +50,6 @@ cc_test(
5150
srcs = ["test_conditionals.cpp"],
5251
deps = [
5352
"//tests/util",
54-
"//core",
5553
"@googletest//:gtest_main",
5654
] + select({
5755
":use_pre_cxx11_abi": ["@libtorch_pre_cxx11_abi//:libtorch"],
@@ -72,4 +70,4 @@ test_suite(
7270
":test_fallback_graph_output",
7371
":test_conditionals"
7472
]
75-
)
73+
)

tests/core/partitioning/partitioning_test.bzl

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ def partitioning_test(name, visibility=None):
55
visibility = visibility,
66
deps = [
77
"//tests/util",
8-
"//core",
98
"@googletest//:gtest_main",
109
] + select({
1110
":use_pre_cxx11_abi": ["@libtorch_pre_cxx11_abi//:libtorch"],

tests/cpp/BUILD

-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ cc_test(
7474
"//tests/modules:jit_models",
7575
],
7676
deps = [
77-
"//cpp:trtorch",
7877
"//tests/util",
7978
"@googletest//:gtest_main",
8079
] + select({
@@ -102,7 +101,6 @@ cc_test(
102101
"//tests/modules:jit_models",
103102
],
104103
deps = [
105-
"//cpp:trtorch",
106104
"//tests/util",
107105
"@googletest//:gtest_main",
108106
] + select({
@@ -137,7 +135,6 @@ cc_library(
137135
name = "cpp_api_test",
138136
hdrs = ["cpp_api_test.h"],
139137
deps = [
140-
"//cpp:trtorch",
141138
"//tests/util",
142139
"@googletest//:gtest_main",
143140
] + select({

tests/util/BUILD

+1-8
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ config_setting(
77
},
88
)
99

10-
config_setting(
11-
name = "ci_build_testing",
12-
values = {
13-
"define": "trtorch_src=pre_built"
14-
}
15-
)
16-
1710
cc_library(
1811
name = "util",
1912
srcs = [
@@ -38,7 +31,7 @@ cc_library(
3831
"@libtorch//:caffe2",
3932
],
4033
}) + select({
41-
":ci_build_testing": [
34+
"//tests:ci_build_testing": [
4235
"@trtorch//:trtorch",
4336
"@trtorch//:trtorch_core_hdrs"
4437
],

0 commit comments

Comments
 (0)