We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e25845 commit 91f2559Copy full SHA for 91f2559
core/conversion/conversion.cpp
@@ -489,8 +489,8 @@ bool VerifyConverterSupportForBlock(const torch::jit::Block* b) {
489
490
for (const auto n : b->nodes()) {
491
auto schema = n->maybeSchema();
492
- if (schema){
493
- for (const auto& x: unsupported_ops) {
+ if (schema) {
+ for (const auto& x : unsupported_ops) {
494
if (x.first == schema->operator_name()) {
495
unsupported_msg << " Unsupported operator: " << *schema << std::endl;
496
unsupported_msg << trtorch::core::util::GetPyTorchSourceCode(n) << std::endl;
0 commit comments