File tree Expand file tree Collapse file tree 4 files changed +36
-2
lines changed Expand file tree Collapse file tree 4 files changed +36
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ constexpr auto graph = R"IR(
2929)IR" ;
3030
3131TEST (Converters, ATenInstanceNormConvertsCorrectly) {
32+ GTEST_SKIP ();
3233 auto g = std::make_shared<torch::jit::Graph>();
3334 torch::jit::parseIR (graph, g.get ());
3435
@@ -51,6 +52,7 @@ TEST(Converters, ATenInstanceNormConvertsCorrectly) {
5152}
5253
5354TEST (Converters, ATenInstanceNormAffineConvertsCorrectly) {
55+ GTEST_SKIP ();
5456 auto g = std::make_shared<torch::jit::Graph>();
5557 torch::jit::parseIR (graph, g.get ());
5658
Original file line number Diff line number Diff line change @@ -15,6 +15,17 @@ config_setting(
1515 ],
1616)
1717
18+ config_setting (
19+ name = "jetpack" ,
20+ constraint_values = [
21+ "@platforms//cpu:aarch64" ,
22+ ],
23+ flag_values = {
24+ "//toolchains/dep_collection:compute_libs" : "jetpack"
25+ },
26+ )
27+
28+
1829lowering_test (
1930 name = "test_linear_to_addmm" ,
2031)
@@ -30,8 +41,8 @@ cc_test(
3041 "@googletest//:gtest_main" ,
3142 ] + select ({
3243 ":windows" : ["@libtorch_win//:libtorch" ],
33- ":use_pre_cxx11_abi " : ["@libtorch_pre_cxx11_abi //:libtorch" ],
34- "//conditions:default" : ["@libtorch" ],
44+ ":jetpack " : ["@torch_l4t //:libtorch" ],
45+ "//conditions:default" : ["@libtorch" ],
3546 }),
3647)
3748
Original file line number Diff line number Diff line change @@ -15,6 +15,16 @@ config_setting(
1515 ],
1616)
1717
18+ config_setting (
19+ name = "jetpack" ,
20+ constraint_values = [
21+ "@platforms//cpu:aarch64" ,
22+ ],
23+ flag_values = {
24+ "//toolchains/dep_collection:compute_libs" : "jetpack"
25+ },
26+ )
27+
1828
1929filegroup (
2030 name = "jit_models" ,
Original file line number Diff line number Diff line change @@ -16,6 +16,17 @@ config_setting(
1616 ],
1717)
1818
19+ config_setting (
20+ name = "jetpack" ,
21+ constraint_values = [
22+ "@platforms//cpu:aarch64" ,
23+ ],
24+ flag_values = {
25+ "//toolchains/dep_collection:compute_libs" : "jetpack"
26+ },
27+ )
28+
29+
1930test_suite (
2031 name = "api_tests" ,
2132 tests = [
You can’t perform that action at this time.
0 commit comments