You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"RemoveNOPs - Note: Removing remaining aten::to operators (in addition to other ops that have no meaning in TRT), if type casts need to be preserved, add a pass before this pass is run");
28
28
LOG_GRAPH("Post aten::to removal: " << *graph_);
29
29
}
30
30
31
31
private:
32
-
voidremoveTo(Block* b) {
33
-
for (auto it = b->nodes().begin(); it != b->nodes().end(); it++) {
34
-
auto n = *it;
35
-
if (n->kind() == c10::Symbol::fromQualString("aten::to")) {
36
-
LOG_GRAPH("Found that node " << *n << " is an to node (RemoveNOPs)" << std::endl);
0 commit comments