Skip to content

Commit 418e9c5

Browse files
authored
Merge pull request #774 from NVIDIA/logging
chore: Change unsupported operators log level to DEBUG
2 parents d6694db + 434cffc commit 418e9c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: core/compiler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ torch::jit::Module CompileGraph(const torch::jit::Module& mod, CompileSpec cfg)
416416
if (cfg.partition_info.enabled &&
417417
!(cfg.lower_info.forced_fallback_modules.size() == 0 &&
418418
cfg.partition_info.forced_fallback_operators.size() == 0 &&
419-
conversion::VerifyConverterSupportForBlock(g->block(), false))) {
419+
conversion::VerifyConverterSupportForBlock(g->block(), true))) {
420420
auto input_ivalues_map = partitioning::generateRandomInputs(cfg.convert_info.inputs, first_use_types);
421421
auto graph_and_mapping = ConstructFallbackGraph(new_mod, g->block(), input_ivalues_map, cfg, static_params);
422422
new_g = graph_and_mapping.first;

0 commit comments

Comments
 (0)