Skip to content
Snippets Groups Projects

More optimizations

Merged rarbore2 requested to merge more_opt3 into main
2 files
+ 18
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -53,7 +53,7 @@ fn bfs<n, m: usize>(graph_nodes: Node[n], source: u32, edges: u32[m]) -> i32[n]
@@ -53,7 +53,7 @@ fn bfs<n, m: usize>(graph_nodes: Node[n], source: u32, edges: u32[m]) -> i32[n]
mask[i] = true;
mask[i] = true;
visited[i] = true;
visited[i] = true;
updated[i] = false;
updated[i] = false;
stop_prod.stop = updated[i];
stop_prod.stop = updated[i];
}
}
}
}
stop = stop_prod.stop;
stop = stop_prod.stop;
Loading