Skip to content

Commit 5c26000

Browse files
committed
chore: removing irrelevant fix
Signed-off-by: Dheeraj Peri <[email protected]>
1 parent 0b8321b commit 5c26000

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/conversion/conversion.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,8 +487,7 @@ std::string ConvertBlockToEngine(
487487
std::unordered_map<c10::OperatorName, std::string> GetUnsupportedOpsInBlock(const torch::jit::Block* b) {
488488
std::unordered_map<c10::OperatorName, std::string> unsupported_ops;
489489
for (const auto n : b->nodes()) {
490-
if (n->kind() != torch::jit::prim::Loop && n->kind() != torch::jit::prim::If && !OpSupported(n) &&
491-
n->kind() != torch::jit::prim::DictConstruct) {
490+
if (n->kind() != torch::jit::prim::Loop && n->kind() != torch::jit::prim::If && !OpSupported(n)) {
492491
auto schema = n->maybeSchema();
493492
TORCHTRT_CHECK(
494493
schema,

0 commit comments

Comments
 (0)