Skip to content

Commit 1ed53ef

Browse files
committed
🐛 transpose is not optimized, ignore for now
1 parent 3663ae2 commit 1ed53ef

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

main.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,12 @@ inline void runExperiment(const G& x, int run) {
162162
random_device dev;
163163
default_random_engine rnd(dev());
164164
// Test transpose graph.
165-
{
166-
ArenaDiGraph<K, V, E> ytr;
167-
ytr.setAllocator(x.allocator());
168-
transposeArenaOmpW(ytr, x);
169-
ytr.clearOmp();
170-
}
165+
// {
166+
// ArenaDiGraph<K, V, E> ytr;
167+
// ytr.setAllocator(x.allocator());
168+
// transposeArenaOmpW(ytr, x);
169+
// ytr.clearOmp();
170+
// }
171171
// Experiment of various batch fractions.
172172
for (double frac=1e-7; frac<=1e-1; frac*=10) {
173173
printf("Batch fraction: %.1e\n", frac);

0 commit comments

Comments
 (0)