File tree 1 file changed +3
-3
lines changed
core/conversion/converters/impl
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ auto interpolate_registrations TRTORCH_UNUSED = RegisterNodeConversionPatterns()
37
37
auto layer_output = ctx->AssociateValueAndTensor (n->outputs ()[0 ], resize_layer->getOutput (0 ));
38
38
LOG_DEBUG (" Output tensor shape: " << layer_output->getDimensions ());
39
39
} else {
40
- TRTORCH_THROW_ERROR (" Unable to retrieve all node inputs for node : " << util::node_info (n) << " \n Scale factor parameter not supported yet" );
40
+ TRTORCH_THROW_ERROR (" Unable to convert node: " << util::node_info (n) << " \n Scale factor parameter for upsample_nearest1d not supported yet. " );
41
41
}
42
42
43
43
return true ;
@@ -67,7 +67,7 @@ auto interpolate_registrations TRTORCH_UNUSED = RegisterNodeConversionPatterns()
67
67
auto layer_output = ctx->AssociateValueAndTensor (n->outputs ()[0 ], resize_layer->getOutput (0 ));
68
68
LOG_DEBUG (" Output tensor shape: " << layer_output->getDimensions ());
69
69
} else {
70
- TRTORCH_THROW_ERROR (" Unable to retrieve all node inputs for node : " << util::node_info (n) << " \n Scale factor parameter not supported yet" );
70
+ TRTORCH_THROW_ERROR (" Unable to convert node: " << util::node_info (n) << " \n Scale factor parameter for upsample_nearest2d not supported yet. " );
71
71
}
72
72
73
73
return true ;
@@ -97,7 +97,7 @@ auto interpolate_registrations TRTORCH_UNUSED = RegisterNodeConversionPatterns()
97
97
auto layer_output = ctx->AssociateValueAndTensor (n->outputs ()[0 ], resize_layer->getOutput (0 ));
98
98
LOG_DEBUG (" Output tensor shape: " << layer_output->getDimensions ());
99
99
} else {
100
- TRTORCH_THROW_ERROR (" Unable to retrieve all node inputs for node : " << util::node_info (n) << " \n Scale factor parameter not supported yet" );
100
+ TRTORCH_THROW_ERROR (" Unable to convert node: " << util::node_info (n) << " \n Scale factor parameter for upsample_nearest3d not supported yet. " );
101
101
}
102
102
103
103
return true ;
You can’t perform that action at this time.
0 commit comments