@@ -737,7 +737,7 @@ static SmallVector<Partition, 32> partitionModule(Module &M, unsigned threads) {
737
737
for (unsigned i = 0 ; i < threads; ++i) {
738
738
pq.push (&partitions[i]);
739
739
}
740
-
740
+
741
741
// Assign the root of each partition to a partition, then assign its children to the same one
742
742
for (unsigned i = 0 ; i < partitioner.nodes .size (); ++i) {
743
743
auto root = partitioner.find (i);
@@ -1029,7 +1029,7 @@ static void add_output(Module &M, TargetMachine &TM, std::vector<std::string> &o
1029
1029
dbgs () << " Time to add output: " << (end - start) / 1e9 << " s\n " ;
1030
1030
return ;
1031
1031
}
1032
-
1032
+
1033
1033
start = jl_hrtime ();
1034
1034
uint64_t counter = 0 ;
1035
1035
for (auto &G : M.global_values ()) {
@@ -1068,7 +1068,7 @@ static void add_output(Module &M, TargetMachine &TM, std::vector<std::string> &o
1068
1068
materializePreserved (*M, partitions[i]);
1069
1069
end = jl_hrtime ();
1070
1070
dbgs () << " Materialization time for shard " << i << " : " << (end - start) / 1e9 << " s\n " ;
1071
-
1071
+
1072
1072
start = jl_hrtime ();
1073
1073
construct_vars (*M, partitions[i]);
1074
1074
M->setModuleFlag (Module::Error, " julia.mv.suffix" , MDString::get (M->getContext (), " _" + std::to_string (i)));
@@ -1288,7 +1288,7 @@ void jl_dump_native_impl(void *native_code,
1288
1288
!!unopt_bc_fname, !!bc_fname, !!obj_fname, !!asm_fname,
1289
1289
threads
1290
1290
); };
1291
-
1291
+
1292
1292
compile (*dataM, " text" , threads);
1293
1293
1294
1294
end = jl_hrtime ();
@@ -1407,7 +1407,7 @@ void jl_dump_native_impl(void *native_code,
1407
1407
if (asm_fname)
1408
1408
handleAllErrors (writeArchive (asm_fname, asm_Archive, true ,
1409
1409
Kind, true , false ), reportWriterError);
1410
-
1410
+
1411
1411
end = jl_hrtime ();
1412
1412
1413
1413
dbgs () << " archive time: " << (end - start) / 1e9 << " s\n " ;
0 commit comments