Skip to content

Commit

Permalink
🐛 transpose is not optimized, ignore for now
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfram77 committed Feb 21, 2025
1 parent 3663ae2 commit 1ed53ef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions main.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,12 @@ inline void runExperiment(const G& x, int run) {
random_device dev;
default_random_engine rnd(dev());
// Test transpose graph.
{
ArenaDiGraph<K, V, E> ytr;
ytr.setAllocator(x.allocator());
transposeArenaOmpW(ytr, x);
ytr.clearOmp();
}
// {
// ArenaDiGraph<K, V, E> ytr;
// ytr.setAllocator(x.allocator());
// transposeArenaOmpW(ytr, x);
// ytr.clearOmp();
// }
// Experiment of various batch fractions.
for (double frac=1e-7; frac<=1e-1; frac*=10) {
printf("Batch fraction: %.1e\n", frac);
Expand Down

0 comments on commit 1ed53ef

Please sign in to comment.