Skip to content

Commit 5b827ff

Browse files
committed
WIP
1 parent 8d8e7f7 commit 5b827ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csrc/preseg_passes/exact_mapped_extent_substitution.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#include "debug.h"
1111
#include "id_model/id_model.h"
1212
#include "ir/utils.h"
13-
#include "logical_domain_map.h"
1413
#include "options.h"
1514

1615
namespace nvfuser::preseg_passes {
@@ -150,7 +149,8 @@ void ExactMappedExtentSubstitutionPass::runPass(Fusion* fusion) {
150149

151150
if (isDebugDumpEnabled(DebugDumpOption::PreSegmenterLogging)) {
152151
debug() << "ExactLogicalDomainMap after " << name() << ":" << std::endl;
153-
IdModel id_model(fusion, false, false, false);
152+
IdModel id_model(
153+
fusion, /*build_graphs=*/false, /*allow_self_mapping=*/true);
154154
id_model.buildExactGraph();
155155
const ValGraph& exact_graph = id_model.idGraph(IdMappingMode::EXACT);
156156
const DisjointSets<Val*>& id_sets = exact_graph.disjointValSets();

0 commit comments

Comments
 (0)