mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
[jit] kill script namespace (#34515)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/34515 Once upon a time we thought this was necessary. In reality it is not, so removing it. For backcompat, our public interface (defined in `api/`) still has typedefs to the old `script::` names. There was only one collision: `Pass` as a `Stmt` and `Pass` as a graph transform. I renamed one of them. Test Plan: Imported from OSS Differential Revision: D20353503 Pulled By: suo fbshipit-source-id: 48bb911ce75120a8c9e0c6fb65262ef775dfba93
This commit is contained in:
committed by
Facebook GitHub Bot
parent
cf8b728255
commit
c235be42dd
@ -23,7 +23,7 @@ void testSchemaMatching() {
|
||||
return 0;
|
||||
}, c10::AliasAnalysisKind::FROM_SCHEMA),
|
||||
});
|
||||
script::Module m("m");
|
||||
Module m("m");
|
||||
m.define(R"(
|
||||
def test(self):
|
||||
a = (1.0, 2.0)
|
||||
@ -59,7 +59,7 @@ void testSchemaMatching() {
|
||||
return 0;
|
||||
}, AliasAnalysisKind::FROM_SCHEMA),
|
||||
});
|
||||
script::Module m("m");
|
||||
Module m("m");
|
||||
m.define(R"JIT(
|
||||
def test(self):
|
||||
a = (1.0, 2.0)
|
||||
|
Reference in New Issue
Block a user