]> git.llucax.com Git - software/dgc/dgcbench.git/commitdiff
micro/rnd_data_2.d: Don't disable the GC
authorLeandro Lucarella <llucax@gmail.com>
Sat, 22 Aug 2009 20:30:28 +0000 (17:30 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 22 Aug 2009 20:30:28 +0000 (17:30 -0300)
Disabling the GC for the filling up the array of arrays just improves the
performance, but has no point in the what the benchmark is trying to test.

micro/rnd_data_2.d

index ee76cf1f7131988d7f21b3a07ad0a4b2457b141e..29d3750693a2c6c268ba46e31994c5aa91a5d7a9 100644 (file)
@@ -4,7 +4,6 @@
 // (changed not to print anything and lower the total iterations; ported to
 // Tango)
 
-import tango.core.Memory;
 import tango.math.random.Random;
 
 int main(char[][] args)
@@ -15,8 +14,6 @@ int main(char[][] args)
 
      stuff.length = 20;
 
-     GC.disable();
-
      auto rand = new Random();
 
      for(int i = 0; i < 200; i++) {
@@ -31,10 +28,6 @@ int main(char[][] args)
              zig = rand.uniform!(int) % stuff.length;
 
          stuff[zig] = arr;
-
-         if (i == 20) {
-             GC.enable();
-         }
      }
 
      return 0;