mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary:
This is an automatic change generated by the following script:
```
#!/usr/bin/env python3
from subprocess import check_output, check_call
import os
def get_compiled_files_list():
import json
with open("build/compile_commands.json") as f:
data = json.load(f)
files = [os.path.relpath(node['file']) for node in data]
for idx, fname in enumerate(files):
if fname.startswith('build/') and fname.endswith('.DEFAULT.cpp'):
files[idx] = fname[len('build/'):-len('.DEFAULT.cpp')]
return files
def run_clang_tidy(fname):
check_call(["python3", "tools/clang_tidy.py", "-c", "build", "-x", fname,"-s"])
changes = check_output(["git", "ls-files", "-m"])
if len(changes) == 0:
return
check_call(["git", "commit","--all", "-m", f"NOLINT stubs for {fname}"])
def main():
git_files = check_output(["git", "ls-files"]).decode("ascii").split("\n")
compiled_files = get_compiled_files_list()
for idx, fname in enumerate(git_files):
if fname not in compiled_files:
continue
if fname.startswith("caffe2/contrib/aten/"):
continue
print(f"[{idx}/{len(git_files)}] Processing {fname}")
run_clang_tidy(fname)
if __name__ == "__main__":
main()
```
Pull Request resolved: https://github.com/pytorch/pytorch/pull/56892
Reviewed By: H-Huang
Differential Revision: D27991944
Pulled By: malfet
fbshipit-source-id: 5415e1eb2c1b34319a4f03024bfaa087007d7179
163 lines
5.0 KiB
C++
163 lines
5.0 KiB
C++
#include <gtest/gtest.h>
|
|
|
|
#include <ATen/core/qualified_name.h>
|
|
#include <test/cpp/jit/test_utils.h>
|
|
#include <torch/csrc/jit/frontend/resolver.h>
|
|
#include <torch/csrc/jit/serialization/import_source.h>
|
|
#include <torch/torch.h>
|
|
|
|
namespace torch {
|
|
namespace jit {
|
|
|
|
static const auto classSrcs1 = R"JIT(
|
|
class FooNestedTest:
|
|
def __init__(self, y):
|
|
self.y = y
|
|
|
|
class FooNestedTest2:
|
|
def __init__(self, y):
|
|
self.y = y
|
|
self.nested = __torch__.FooNestedTest(y)
|
|
|
|
class FooTest:
|
|
def __init__(self, x):
|
|
self.class_attr = __torch__.FooNestedTest(x)
|
|
self.class_attr2 = __torch__.FooNestedTest2(x)
|
|
self.x = self.class_attr.y + self.class_attr2.y
|
|
)JIT";
|
|
|
|
static const auto classSrcs2 = R"JIT(
|
|
class FooTest:
|
|
def __init__(self, x):
|
|
self.dx = x
|
|
)JIT";
|
|
|
|
static void import_libs(
|
|
std::shared_ptr<CompilationUnit> cu,
|
|
const std::string& class_name,
|
|
const std::shared_ptr<Source>& src,
|
|
const std::vector<at::IValue>& tensor_table) {
|
|
SourceImporter si(
|
|
cu,
|
|
&tensor_table,
|
|
[&](const std::string& name) -> std::shared_ptr<Source> { return src; },
|
|
/*version=*/2);
|
|
si.loadType(QualifiedName(class_name));
|
|
}
|
|
|
|
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
|
|
TEST(ClassImportTest, Basic) {
|
|
auto cu1 = std::make_shared<CompilationUnit>();
|
|
auto cu2 = std::make_shared<CompilationUnit>();
|
|
std::vector<at::IValue> constantTable;
|
|
// Import different versions of FooTest into two namespaces.
|
|
import_libs(
|
|
cu1,
|
|
"__torch__.FooTest",
|
|
std::make_shared<Source>(classSrcs1),
|
|
constantTable);
|
|
import_libs(
|
|
cu2,
|
|
"__torch__.FooTest",
|
|
std::make_shared<Source>(classSrcs2),
|
|
constantTable);
|
|
|
|
// We should get the correct version of `FooTest` for whichever namespace we
|
|
// are referencing
|
|
c10::QualifiedName base("__torch__");
|
|
auto classType1 = cu1->get_class(c10::QualifiedName(base, "FooTest"));
|
|
ASSERT_TRUE(classType1->hasAttribute("x"));
|
|
ASSERT_FALSE(classType1->hasAttribute("dx"));
|
|
|
|
auto classType2 = cu2->get_class(c10::QualifiedName(base, "FooTest"));
|
|
ASSERT_TRUE(classType2->hasAttribute("dx"));
|
|
ASSERT_FALSE(classType2->hasAttribute("x"));
|
|
|
|
// We should only see FooNestedTest in the first namespace
|
|
auto c = cu1->get_class(c10::QualifiedName(base, "FooNestedTest"));
|
|
ASSERT_TRUE(c);
|
|
|
|
c = cu2->get_class(c10::QualifiedName(base, "FooNestedTest"));
|
|
ASSERT_FALSE(c);
|
|
}
|
|
|
|
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
|
|
TEST(ClassImportTest, ScriptObject) {
|
|
Module m1("m1");
|
|
Module m2("m2");
|
|
std::vector<at::IValue> constantTable;
|
|
import_libs(
|
|
m1._ivalue()->compilation_unit(),
|
|
"__torch__.FooTest",
|
|
std::make_shared<Source>(classSrcs1),
|
|
constantTable);
|
|
import_libs(
|
|
m2._ivalue()->compilation_unit(),
|
|
"__torch__.FooTest",
|
|
std::make_shared<Source>(classSrcs2),
|
|
constantTable);
|
|
|
|
// Incorrect arguments for constructor should throw
|
|
c10::QualifiedName base("__torch__");
|
|
// NOLINTNEXTLINE(cppcoreguidelines-avoid-goto,hicpp-avoid-goto)
|
|
ASSERT_ANY_THROW(m1.create_class(c10::QualifiedName(base, "FooTest"), {1}));
|
|
auto x = torch::ones({2, 3});
|
|
auto obj = m2.create_class(c10::QualifiedName(base, "FooTest"), x).toObject();
|
|
auto dx = obj->getAttr("dx");
|
|
ASSERT_TRUE(almostEqual(x, dx.toTensor()));
|
|
|
|
auto new_x = torch::rand({2, 3});
|
|
obj->setAttr("dx", new_x);
|
|
auto new_dx = obj->getAttr("dx");
|
|
ASSERT_TRUE(almostEqual(new_x, new_dx.toTensor()));
|
|
}
|
|
|
|
static const auto methodSrc = R"JIT(
|
|
def __init__(self, x):
|
|
return x
|
|
)JIT";
|
|
|
|
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
|
|
TEST(ClassImportTest, ClassDerive) {
|
|
auto cu = std::make_shared<CompilationUnit>();
|
|
auto cls = ClassType::create("foo.bar", cu);
|
|
const auto self = SimpleSelf(cls);
|
|
auto methods = cu->define("foo.bar", methodSrc, nativeResolver(), &self);
|
|
auto method = methods[0];
|
|
cls->addAttribute("attr", TensorType::get());
|
|
ASSERT_TRUE(cls->findMethod(method->name()));
|
|
|
|
// Refining a new class should retain attributes and methods
|
|
auto newCls = cls->refine({TensorType::get()});
|
|
ASSERT_TRUE(newCls->hasAttribute("attr"));
|
|
ASSERT_TRUE(newCls->findMethod(method->name()));
|
|
|
|
auto newCls2 = cls->withContained({TensorType::get()})->expect<ClassType>();
|
|
ASSERT_TRUE(newCls2->hasAttribute("attr"));
|
|
ASSERT_TRUE(newCls2->findMethod(method->name()));
|
|
}
|
|
|
|
static const auto torchbindSrc = R"JIT(
|
|
class FooBar1234(Module):
|
|
__parameters__ = []
|
|
f : __torch__.torch.classes._TorchScriptTesting._StackString
|
|
training : bool
|
|
def forward(self: __torch__.FooBar1234) -> str:
|
|
return (self.f).top()
|
|
)JIT";
|
|
|
|
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
|
|
TEST(ClassImportTest, CustomClass) {
|
|
auto cu1 = std::make_shared<CompilationUnit>();
|
|
std::vector<at::IValue> constantTable;
|
|
// Import different versions of FooTest into two namespaces.
|
|
import_libs(
|
|
cu1,
|
|
"__torch__.FooBar1234",
|
|
std::make_shared<Source>(torchbindSrc),
|
|
constantTable);
|
|
}
|
|
|
|
} // namespace jit
|
|
} // namespace torch
|