Measure effect of read latencies vs. connection idleness
authorMichael Vrable <mvrable@cs.ucsd.edu>
Fri, 4 Mar 2011 00:07:42 +0000 (16:07 -0800)
committerMichael Vrable <mvrable@cs.ucsd.edu>
Fri, 4 Mar 2011 00:07:42 +0000 (16:07 -0800)
34 files changed:
.gitignore
cloudbench/CMakeLists.txt
cloudbench/readdelay.c [new file with mode: 0644]
results/20110303/README [new file with mode: 0644]
results/20110303/delayed-0.0 [new file with mode: 0644]
results/20110303/delayed-0.05 [new file with mode: 0644]
results/20110303/delayed-0.1 [new file with mode: 0644]
results/20110303/delayed-0.2 [new file with mode: 0644]
results/20110303/delayed-0.5 [new file with mode: 0644]
results/20110303/delayed-1.0 [new file with mode: 0644]
results/20110303/delayed-1M-0.0 [new file with mode: 0644]
results/20110303/delayed-1M-0.05 [new file with mode: 0644]
results/20110303/delayed-1M-0.1 [new file with mode: 0644]
results/20110303/delayed-1M-0.2 [new file with mode: 0644]
results/20110303/delayed-1M-0.5 [new file with mode: 0644]
results/20110303/delayed-1M-1.0 [new file with mode: 0644]
results/20110303/delayed-1M-5.0 [new file with mode: 0644]
results/20110303/delayed-20.0 [new file with mode: 0644]
results/20110303/delayed-32k-0.0 [new file with mode: 0644]
results/20110303/delayed-32k-0.05 [new file with mode: 0644]
results/20110303/delayed-32k-0.1 [new file with mode: 0644]
results/20110303/delayed-32k-0.2 [new file with mode: 0644]
results/20110303/delayed-32k-0.5 [new file with mode: 0644]
results/20110303/delayed-32k-1.0 [new file with mode: 0644]
results/20110303/delayed-32k-5.0 [new file with mode: 0644]
results/20110303/delayed-4M-0.0 [new file with mode: 0644]
results/20110303/delayed-4M-0.05 [new file with mode: 0644]
results/20110303/delayed-4M-0.1 [new file with mode: 0644]
results/20110303/delayed-4M-0.2 [new file with mode: 0644]
results/20110303/delayed-4M-0.5 [new file with mode: 0644]
results/20110303/delayed-4M-1.0 [new file with mode: 0644]
results/20110303/delayed-4M-5.0 [new file with mode: 0644]
results/20110303/delayed-5.0 [new file with mode: 0644]
results/20110303/delayed.gnuplot [new file with mode: 0644]

index 41e966b..8eb1999 100644 (file)
@@ -20,4 +20,5 @@ nfs3/nfsproxy
 nfs3/synclient
 simplestore/simpleserver
 cloudbench/s3readbench
+cloudbench/s3readdelay
 cloudbench/s3readlatency
index 9cb9813..6a9070d 100644 (file)
@@ -3,9 +3,11 @@ link_directories("${LIBS3_BUILD_DIR}/lib")
 
 add_executable(s3readbench readbench.c)
 add_executable(s3readlatency readlatency.c)
+add_executable(s3readdelay readdelay.c)
 
 set(CMAKE_C_FLAGS "-Wall -std=gnu99 ${CMAKE_C_FLAGS}")
 set(INSTALL_RPATH_USE_LINK_PATH 1)
 
 target_link_libraries(s3readbench pthread s3)
 target_link_libraries(s3readlatency pthread s3)
+target_link_libraries(s3readdelay pthread s3)
diff --git a/cloudbench/readdelay.c b/cloudbench/readdelay.c
new file mode 100644 (file)
index 0000000..c733e09
--- /dev/null
@@ -0,0 +1,122 @@
+/* Simple benchmark for Amazon S3: measures download times to fetch files over
+ * a single connection, with variable amounts of delay between requests.  This
+ * is intended to test whether the TCP congestion control state gets reset and
+ * slow start needs to restart, depending on how long the connection was left
+ * idle. */
+
+#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <string.h>
+#include <pthread.h>
+#include <time.h>
+#include <unistd.h>
+#include <math.h>
+
+#include "libs3.h"
+
+const char *key = NULL;
+
+S3BucketContext bucket;
+
+struct callback_state {
+    //struct thread_state *ts;
+    size_t bytes_remaining;
+};
+
+int64_t get_ns()
+{
+    struct timespec ts;
+    clock_gettime(CLOCK_MONOTONIC, &ts);
+
+    return ts.tv_sec * 1000000000LL + ts.tv_nsec;
+}
+
+void do_sleep(int64_t delay)
+{
+    if (delay <= 0)
+        return;
+
+    struct timespec t;
+    t.tv_sec = delay / 1000000000;
+    t.tv_nsec = delay % 1000000000;
+    nanosleep(&t, NULL);
+}
+
+static S3Status data_callback(int bufferSize, const char *buffer,
+                              void *callbackData)
+{
+    struct callback_state *state = (struct callback_state *)callbackData;
+    state->bytes_remaining -= bufferSize;
+    /*
+    if (state->ts->first_byte_timestamp == 0)
+        state->ts->first_byte_timestamp = get_ns(); */
+    return S3StatusOK;
+}
+
+static S3Status properties_callback(const S3ResponseProperties *properties,
+                                     void *callbackData)
+{
+    return S3StatusOK;
+}
+
+static void complete_callback(S3Status status,
+                              const S3ErrorDetails *errorDetails,
+                              void *callbackData)
+{
+}
+
+static void do_get(const char *key, size_t bytes)
+{
+    struct callback_state state;
+    struct S3GetObjectHandler handler;
+
+    state.bytes_remaining = bytes;
+    //state.ts = ts;
+    handler.responseHandler.propertiesCallback = properties_callback;
+    handler.responseHandler.completeCallback = complete_callback;
+    handler.getObjectDataCallback = data_callback;
+
+    S3_get_object(&bucket, key, NULL, 0, 0, NULL, &handler, &state);
+}
+
+void run_test(int64_t delay_ns)
+{
+    for (int i = 0; i <= 25; i++) {
+        int64_t start, finish;
+        start = get_ns();
+        do_get(key, 0);
+        finish = get_ns();
+
+        int64_t elapsed = finish - start;
+        if (i > 0) {
+            printf("%f\n", elapsed / 1e9);
+            fflush(stdout);
+        }
+
+        do_sleep(delay_ns);
+    }
+}
+
+int main(int argc, char *argv[])
+{
+    S3_initialize(NULL, S3_INIT_ALL);
+
+    bucket.bucketName = "mvrable-benchmark";
+    bucket.protocol = S3ProtocolHTTP;
+    bucket.uriStyle = S3UriStyleVirtualHost;
+    bucket.accessKeyId = getenv("AWS_ACCESS_KEY_ID");
+    bucket.secretAccessKey = getenv("AWS_SECRET_ACCESS_KEY");
+
+    if (argc != 3) {
+        fprintf(stderr, "Usage: %s <file> <delay>\n", argv[0]);
+        return 1;
+    }
+
+    key = argv[1];
+    double inter_request_delay = atof(argv[2]);
+    run_test(inter_request_delay * 1e9);
+
+    return 0;
+}
diff --git a/results/20110303/README b/results/20110303/README
new file mode 100644 (file)
index 0000000..0269e2a
--- /dev/null
@@ -0,0 +1,3 @@
+Tests using cloudbench/readdelay to determine whether the response time
+to read an object depends on how long the TCP connection has been idle.
+It doesn't seem that there is much of a consistent effect.
diff --git a/results/20110303/delayed-0.0 b/results/20110303/delayed-0.0
new file mode 100644 (file)
index 0000000..7b04aef
--- /dev/null
@@ -0,0 +1,100 @@
+0.159066
+0.184066
+0.185337
+0.192697
+0.216494
+0.223578
+0.239535
+0.253340
+0.270860
+0.279742
+0.291440
+0.294622
+0.305384
+0.316684
+0.317253
+0.331264
+0.331907
+0.355592
+0.366379
+0.375251
+0.378862
+0.393507
+0.404023
+0.416353
+0.418550
+0.423800
+0.438834
+0.447242
+0.456397
+0.456800
+0.465103
+0.466071
+0.480312
+0.486482
+0.490543
+0.496564
+0.540976
+0.541209
+0.542796
+0.542961
+0.550178
+0.577899
+0.598812
+0.629560
+0.633430
+0.708314
+0.731692
+0.741336
+0.759548
+0.759859
+0.784447
+0.797261
+0.829189
+0.860953
+0.862218
+0.871682
+0.874543
+0.908310
+0.935229
+0.935346
+0.941362
+1.003608
+1.010993
+1.029990
+1.063570
+1.066534
+1.076989
+1.100837
+1.101195
+1.124852
+1.141112
+1.141863
+1.217360
+1.221535
+1.237724
+1.241840
+1.262043
+1.278775
+1.297494
+1.312878
+1.315699
+1.346398
+1.350952
+1.352402
+1.364657
+1.472620
+1.506883
+1.593151
+1.649040
+1.695993
+1.713611
+1.751566
+1.805226
+1.837047
+1.899218
+2.003536
+2.010690
+2.050056
+2.062913
+2.474478
diff --git a/results/20110303/delayed-0.05 b/results/20110303/delayed-0.05
new file mode 100644 (file)
index 0000000..6cf8098
--- /dev/null
@@ -0,0 +1,100 @@
+0.312574
+0.412270
+0.412510
+0.420085
+0.430584
+0.433546
+0.436541
+0.442743
+0.469475
+0.472399
+0.497411
+0.497550
+0.498495
+0.501863
+0.502486
+0.507137
+0.510055
+0.511240
+0.527310
+0.529391
+0.530557
+0.555827
+0.556858
+0.559946
+0.569013
+0.594203
+0.600331
+0.601676
+0.608810
+0.621833
+0.624237
+0.625491
+0.626529
+0.649906
+0.686870
+0.695302
+0.709958
+0.711144
+0.714215
+0.716112
+0.721978
+0.732992
+0.740362
+0.750271
+0.782426
+0.787200
+0.808452
+0.810220
+0.812339
+0.816198
+0.838022
+0.841643
+0.864069
+0.877390
+0.906650
+0.945947
+0.961187
+1.059593
+1.097494
+1.097573
+1.124914
+1.150658
+1.175684
+1.232280
+1.238916
+1.242544
+1.281414
+1.285128
+1.322252
+1.356868
+1.366696
+1.401731
+1.420512
+1.491296
+1.508828
+1.527900
+1.530758
+1.589222
+1.595033
+1.608143
+1.697435
+1.700537
+1.723923
+1.793066
+1.832610
+1.873527
+1.910776
+1.980103
+2.005479
+2.050855
+2.066352
+2.067835
+2.079342
+2.080778
+2.097911
+2.132022
+2.158893
+2.160406
+2.165435
+2.609688
diff --git a/results/20110303/delayed-0.1 b/results/20110303/delayed-0.1
new file mode 100644 (file)
index 0000000..e40fc23
--- /dev/null
@@ -0,0 +1,200 @@
+0.249538
+0.270032
+0.270292
+0.309875
+0.345171
+0.351025
+0.368127
+0.371076
+0.373709
+0.376566
+0.398746
+0.401903
+0.406335
+0.408755
+0.409185
+0.428822
+0.432380
+0.435035
+0.435303
+0.437897
+0.470550
+0.473953
+0.487231
+0.491319
+0.492466
+0.494216
+0.498142
+0.504872
+0.510823
+0.517426
+0.519397
+0.520043
+0.520614
+0.528041
+0.529774
+0.536152
+0.546176
+0.553864
+0.558735
+0.559801
+0.567678
+0.575314
+0.581780
+0.586619
+0.588286
+0.592018
+0.596900
+0.597077
+0.616719
+0.617275
+0.618067
+0.621450
+0.628157
+0.630038
+0.641983
+0.650793
+0.652295
+0.652802
+0.653012
+0.657070
+0.658751
+0.659963
+0.670619
+0.682092
+0.682728
+0.685990
+0.687832
+0.703871
+0.714276
+0.714430
+0.714916
+0.718011
+0.724485
+0.741663
+0.746705
+0.791982
+0.804420
+0.806198
+0.817232
+0.838345
+0.853112
+0.877597
+0.877612
+0.884249
+0.898807
+0.911733
+0.914819
+0.932990
+0.959497
+0.960909
+0.966005
+0.973408
+1.025958
+1.029131
+1.050036
+1.056906
+1.120129
+1.125392
+1.142853
+1.142884
+1.147523
+1.154763
+1.272594
+1.272836
+1.275114
+1.281396
+1.282392
+1.284353
+1.299072
+1.299537
+1.302629
+1.305848
+1.321228
+1.333319
+1.354249
+1.370588
+1.375430
+1.391215
+1.430696
+1.433596
+1.489125
+1.517939
+1.533949
+1.539292
+1.574163
+1.579585
+1.596179
+1.611771
+1.613929
+1.617495
+1.634344
+1.670212
+1.674893
+1.679894
+1.684185
+1.692046
+1.700425
+1.706281
+1.714361
+1.733473
+1.769181
+1.796073
+1.797765
+1.798991
+1.803440
+1.810052
+1.815311
+1.819566
+1.819708
+1.829622
+1.832278
+1.832809
+1.840719
+1.852392
+1.857609
+1.867169
+1.893658
+1.918998
+1.921469
+1.949662
+1.952055
+1.957468
+1.958557
+1.976167
+1.977270
+1.979718
+2.009636
+2.010331
+2.013776
+2.016449
+2.034371
+2.046921
+2.047735
+2.060399
+2.064368
+2.067891
+2.070772
+2.074663
+2.081790
+2.125310
+2.127395
+2.155121
+2.158942
+2.165114
+2.168361
+2.194235
+2.201403
+2.225371
+2.237751
+2.238200
+2.256597
+2.267120
+2.278461
+2.333732
+2.380371
+2.673156
+2.832022
+2.985978
+3.164694
+3.286930
diff --git a/results/20110303/delayed-0.2 b/results/20110303/delayed-0.2
new file mode 100644 (file)
index 0000000..5a27efc
--- /dev/null
@@ -0,0 +1,100 @@
+0.218084
+0.277624
+0.301396
+0.331341
+0.331700
+0.340814
+0.359951
+0.360896
+0.363038
+0.368040
+0.368244
+0.370322
+0.382131
+0.390424
+0.391496
+0.394334
+0.397610
+0.427834
+0.428190
+0.437470
+0.449374
+0.450960
+0.454012
+0.454672
+0.458344
+0.461528
+0.464182
+0.505641
+0.505775
+0.514543
+0.515884
+0.519148
+0.519715
+0.521908
+0.525852
+0.542462
+0.547038
+0.547532
+0.552371
+0.587849
+0.594026
+0.603709
+0.629668
+0.629986
+0.648129
+0.668488
+0.669307
+0.694982
+0.710462
+0.718862
+0.733869
+0.775263
+0.792251
+0.825870
+0.852356
+0.854808
+0.862265
+0.874218
+0.969399
+0.972088
+1.004888
+1.045722
+1.046389
+1.047105
+1.063225
+1.065913
+1.122172
+1.125348
+1.128362
+1.139458
+1.150999
+1.242751
+1.278759
+1.281106
+1.286805
+1.339574
+1.348109
+1.360754
+1.375091
+1.459433
+1.469649
+1.473248
+1.511394
+1.514134
+1.525078
+1.565670
+1.623154
+1.648145
+1.672901
+1.717696
+1.734769
+1.788514
+1.796517
+1.808019
+1.891409
+1.893010
+1.899246
+1.906253
+1.953969
+2.061883
diff --git a/results/20110303/delayed-0.5 b/results/20110303/delayed-0.5
new file mode 100644 (file)
index 0000000..a4e9ed3
--- /dev/null
@@ -0,0 +1,100 @@
+0.259663
+0.270863
+0.280899
+0.313444
+0.314176
+0.340572
+0.345816
+0.370572
+0.370800
+0.372305
+0.380566
+0.388922
+0.401388
+0.405482
+0.432173
+0.433148
+0.439897
+0.444505
+0.445263
+0.453234
+0.463153
+0.464193
+0.467041
+0.469853
+0.491599
+0.500170
+0.510688
+0.517106
+0.519720
+0.524648
+0.526456
+0.527329
+0.528715
+0.535583
+0.547049
+0.547121
+0.564675
+0.571935
+0.577052
+0.593303
+0.594266
+0.596696
+0.652235
+0.660908
+0.664417
+0.664899
+0.666223
+0.682415
+0.711302
+0.739569
+0.785558
+0.802916
+0.836458
+0.840717
+0.849310
+0.870879
+0.933481
+0.957764
+0.975536
+1.026202
+1.029123
+1.092412
+1.116910
+1.145958
+1.158031
+1.217907
+1.240347
+1.276532
+1.281229
+1.298911
+1.332135
+1.397541
+1.402262
+1.423056
+1.426547
+1.452715
+1.452877
+1.455674
+1.490358
+1.516707
+1.548413
+1.560711
+1.568296
+1.575149
+1.575588
+1.584242
+1.640094
+1.654856
+1.713486
+1.730484
+1.735045
+1.791203
+1.812044
+1.816142
+1.832083
+1.878475
+1.895589
+1.949446
+2.014334
+2.448287
diff --git a/results/20110303/delayed-1.0 b/results/20110303/delayed-1.0
new file mode 100644 (file)
index 0000000..398e8e6
--- /dev/null
@@ -0,0 +1,100 @@
+0.301650
+0.302602
+0.303356
+0.312211
+0.326686
+0.331693
+0.351731
+0.361335
+0.362531
+0.365884
+0.367079
+0.380883
+0.383278
+0.383284
+0.384660
+0.386298
+0.388680
+0.391659
+0.392398
+0.392890
+0.413814
+0.415326
+0.420829
+0.425852
+0.426135
+0.426456
+0.426771
+0.427224
+0.428200
+0.429376
+0.429888
+0.438092
+0.451729
+0.453388
+0.453601
+0.456678
+0.460575
+0.462730
+0.463228
+0.466229
+0.476991
+0.483738
+0.504964
+0.522815
+0.524007
+0.538395
+0.546430
+0.563916
+0.573569
+0.577878
+0.597492
+0.602554
+0.636173
+0.666516
+0.690683
+0.691383
+0.718289
+0.726349
+0.780337
+0.814142
+0.825669
+0.836624
+0.836979
+0.864747
+0.869662
+0.872187
+0.877965
+0.881431
+0.904876
+0.906664
+0.929367
+0.932544
+0.964861
+0.971062
+1.041078
+1.052366
+1.066423
+1.068051
+1.157627
+1.195301
+1.206302
+1.206796
+1.235701
+1.260868
+1.269353
+1.274778
+1.301662
+1.368488
+1.370859
+1.381598
+1.528375
+1.645188
+1.651104
+1.728013
+1.761212
+1.799343
+1.837222
+1.913125
+1.914076
+2.056600
diff --git a/results/20110303/delayed-1M-0.0 b/results/20110303/delayed-1M-0.0
new file mode 100644 (file)
index 0000000..7c3e411
--- /dev/null
@@ -0,0 +1,100 @@
+0.170805
+0.182867
+0.184418
+0.184773
+0.204617
+0.216124
+0.217979
+0.222685
+0.228404
+0.228407
+0.242501
+0.253420
+0.254595
+0.276076
+0.279535
+0.311702
+0.319000
+0.341618
+0.365541
+0.377431
+0.392764
+0.396097
+0.397227
+0.397388
+0.397913
+0.405345
+0.423117
+0.428477
+0.439726
+0.441332
+0.486466
+0.488442
+0.491937
+0.508594
+0.522439
+0.523771
+0.525296
+0.533148
+0.541402
+0.546523
+0.547991
+0.549219
+0.553106
+0.553849
+0.556045
+0.578075
+0.608195
+0.618503
+0.629743
+0.631134
+0.634285
+0.653576
+0.674312
+0.682255
+0.685228
+0.695471
+0.703164
+0.717275
+0.730931
+0.738452
+0.745509
+0.814377
+0.822760
+0.978671
+1.034775
+1.060482
+1.063849
+1.069561
+1.087653
+1.126216
+1.162520
+1.204428
+1.279479
+1.307257
+1.312631
+1.315419
+1.370780
+1.434231
+1.459853
+1.466724
+1.495340
+1.516428
+1.522114
+1.667005
+1.729242
+1.731404
+1.732078
+1.732485
+1.793297
+1.817041
+1.900115
+1.912975
+2.007736
+2.035493
+2.037530
+2.068603
+2.186752
+2.201882
+2.223486
+2.231460
diff --git a/results/20110303/delayed-1M-0.05 b/results/20110303/delayed-1M-0.05
new file mode 100644 (file)
index 0000000..0351663
--- /dev/null
@@ -0,0 +1,100 @@
+0.226641
+0.294141
+0.333613
+0.343585
+0.367250
+0.370745
+0.373309
+0.373531
+0.396471
+0.406246
+0.420986
+0.422130
+0.425362
+0.427288
+0.428459
+0.451399
+0.453778
+0.464255
+0.468240
+0.468745
+0.471994
+0.477161
+0.482506
+0.489311
+0.507740
+0.515800
+0.527872
+0.544334
+0.549796
+0.554109
+0.580832
+0.597707
+0.605426
+0.606026
+0.606600
+0.607145
+0.627048
+0.657950
+0.672733
+0.691265
+0.692044
+0.708264
+0.716363
+0.726194
+0.726581
+0.735820
+0.745175
+0.770364
+0.783209
+0.787957
+0.813794
+0.848859
+0.869105
+0.894720
+0.904181
+0.908931
+1.030670
+1.031752
+1.092468
+1.123495
+1.178744
+1.195169
+1.222225
+1.243165
+1.289368
+1.315455
+1.334379
+1.348285
+1.350769
+1.585816
+1.610204
+1.647116
+1.725854
+1.744125
+1.768522
+1.770452
+1.789437
+1.793298
+1.825516
+1.846790
+1.862849
+1.877187
+1.885827
+1.942985
+1.955802
+1.982759
+1.998080
+2.008193
+2.033319
+2.061210
+2.061408
+2.103019
+2.148349
+2.153212
+2.222923
+2.226968
+2.286094
+2.305961
+2.326925
+2.329833
diff --git a/results/20110303/delayed-1M-0.1 b/results/20110303/delayed-1M-0.1
new file mode 100644 (file)
index 0000000..6b4696f
--- /dev/null
@@ -0,0 +1,100 @@
+0.329032
+0.331184
+0.368437
+0.369068
+0.376478
+0.388995
+0.392415
+0.392966
+0.393930
+0.402541
+0.410378
+0.412708
+0.424375
+0.425749
+0.433201
+0.449563
+0.460479
+0.461105
+0.472363
+0.482922
+0.484418
+0.485884
+0.486151
+0.488370
+0.492749
+0.512689
+0.514303
+0.516909
+0.528997
+0.535892
+0.537317
+0.545143
+0.546680
+0.556233
+0.560709
+0.571595
+0.573149
+0.582053
+0.608426
+0.611201
+0.630591
+0.632688
+0.646602
+0.648749
+0.655742
+0.665186
+0.695901
+0.700229
+0.710361
+0.710606
+0.722721
+0.743682
+0.794817
+0.809466
+0.847279
+0.850239
+0.867052
+0.887960
+0.909134
+0.912179
+0.932607
+0.995796
+1.001942
+1.003930
+1.039529
+1.060153
+1.066101
+1.117416
+1.122237
+1.174460
+1.193210
+1.205609
+1.211298
+1.235819
+1.247545
+1.341515
+1.576169
+1.588656
+1.615319
+1.630625
+1.640957
+1.703290
+1.709005
+1.738772
+1.740088
+1.759204
+1.765758
+1.786589
+1.796188
+1.814348
+1.857208
+1.889573
+1.893210
+1.990592
+1.998379
+2.015458
+2.076133
+2.117746
+2.211717
+2.224654
diff --git a/results/20110303/delayed-1M-0.2 b/results/20110303/delayed-1M-0.2
new file mode 100644 (file)
index 0000000..39871bf
--- /dev/null
@@ -0,0 +1,100 @@
+0.257581
+0.292272
+0.295165
+0.309385
+0.310764
+0.350368
+0.356766
+0.372344
+0.373901
+0.377557
+0.377892
+0.380443
+0.383599
+0.389900
+0.404005
+0.419104
+0.431296
+0.433082
+0.435785
+0.438437
+0.445172
+0.452022
+0.452374
+0.460361
+0.465195
+0.466125
+0.484008
+0.484268
+0.509932
+0.518027
+0.518723
+0.525897
+0.526511
+0.527759
+0.534085
+0.535474
+0.537600
+0.545256
+0.550768
+0.558132
+0.567120
+0.585954
+0.589782
+0.598098
+0.632359
+0.638644
+0.689973
+0.692354
+0.710750
+0.727408
+0.742045
+0.747982
+0.755646
+0.779500
+0.867397
+0.897401
+0.912056
+0.932169
+0.933324
+0.950081
+1.028616
+1.037852
+1.059245
+1.138233
+1.178006
+1.204630
+1.223127
+1.235982
+1.247660
+1.266302
+1.266353
+1.269956
+1.272692
+1.298567
+1.309081
+1.360287
+1.383858
+1.422919
+1.425990
+1.503051
+1.516217
+1.554518
+1.586861
+1.644125
+1.646863
+1.669349
+1.675490
+1.702749
+1.733296
+1.735824
+1.737069
+1.783337
+1.787918
+1.849546
+1.882531
+1.886221
+1.955320
+2.007664
+2.031850
+2.328104
diff --git a/results/20110303/delayed-1M-0.5 b/results/20110303/delayed-1M-0.5
new file mode 100644 (file)
index 0000000..b9d812f
--- /dev/null
@@ -0,0 +1,100 @@
+0.278274
+0.291133
+0.295863
+0.327652
+0.332920
+0.359403
+0.374411
+0.379314
+0.381516
+0.383573
+0.399571
+0.427204
+0.435761
+0.435924
+0.436177
+0.449578
+0.455885
+0.460750
+0.474007
+0.476983
+0.477313
+0.478176
+0.496846
+0.496886
+0.498332
+0.502652
+0.509201
+0.513035
+0.520722
+0.523182
+0.525623
+0.527032
+0.528911
+0.539371
+0.545595
+0.567641
+0.570368
+0.574053
+0.575055
+0.605695
+0.612207
+0.614993
+0.657714
+0.699115
+0.712676
+0.726353
+0.733444
+0.743750
+0.746243
+0.841179
+0.849239
+0.862431
+0.878459
+0.880443
+0.912501
+0.932881
+0.953289
+0.957180
+1.024142
+1.053647
+1.087771
+1.090247
+1.141257
+1.211167
+1.270037
+1.357839
+1.390419
+1.423099
+1.524626
+1.528144
+1.545212
+1.579912
+1.592413
+1.607934
+1.612609
+1.622557
+1.656173
+1.675234
+1.677540
+1.678149
+1.678672
+1.681288
+1.708780
+1.725743
+1.776243
+1.776797
+1.803340
+1.815908
+1.818967
+1.827780
+1.864951
+1.879991
+1.951946
+1.965796
+1.980230
+2.021830
+2.023546
+2.090615
+2.155770
+2.500077
diff --git a/results/20110303/delayed-1M-1.0 b/results/20110303/delayed-1M-1.0
new file mode 100644 (file)
index 0000000..bdc2e60
--- /dev/null
@@ -0,0 +1,100 @@
+0.317560
+0.337072
+0.340393
+0.341426
+0.344591
+0.344834
+0.359988
+0.384771
+0.394871
+0.403136
+0.411755
+0.420432
+0.427522
+0.435339
+0.443116
+0.444722
+0.446127
+0.447116
+0.453211
+0.455571
+0.462441
+0.465611
+0.470141
+0.472088
+0.478320
+0.478412
+0.485537
+0.493084
+0.500528
+0.505555
+0.509755
+0.517364
+0.527009
+0.530318
+0.531146
+0.533834
+0.542886
+0.544965
+0.552248
+0.558116
+0.558879
+0.559345
+0.571516
+0.587751
+0.594633
+0.637474
+0.657020
+0.688804
+0.744589
+0.767828
+0.796909
+0.808457
+0.814703
+0.814815
+0.839821
+0.844306
+0.862081
+0.914792
+0.923963
+0.955908
+0.999638
+1.012422
+1.015761
+1.027270
+1.034674
+1.051508
+1.058458
+1.061970
+1.088914
+1.091561
+1.094386
+1.102995
+1.109973
+1.110931
+1.116249
+1.139684
+1.182133
+1.208720
+1.210045
+1.214875
+1.260588
+1.273034
+1.299298
+1.322033
+1.338020
+1.426225
+1.488583
+1.512462
+1.553236
+1.587947
+1.619814
+1.729865
+1.731421
+1.743445
+1.801862
+1.864846
+1.891670
+1.905658
+1.916685
+1.924177
diff --git a/results/20110303/delayed-1M-5.0 b/results/20110303/delayed-1M-5.0
new file mode 100644 (file)
index 0000000..bd2502f
--- /dev/null
@@ -0,0 +1,100 @@
+0.275910
+0.334962
+0.341057
+0.371293
+0.386920
+0.388630
+0.390646
+0.391591
+0.394158
+0.398018
+0.403465
+0.411970
+0.412452
+0.412817
+0.416813
+0.423199
+0.426841
+0.434286
+0.434685
+0.439746
+0.443413
+0.443461
+0.443612
+0.444656
+0.446544
+0.460939
+0.463891
+0.465907
+0.470352
+0.472972
+0.474588
+0.501936
+0.506116
+0.509740
+0.509956
+0.513576
+0.515765
+0.528009
+0.555264
+0.577835
+0.587066
+0.616864
+0.689016
+0.755482
+0.788369
+0.808695
+0.843912
+0.845724
+0.861095
+0.866088
+0.868376
+0.869585
+0.878230
+0.900057
+0.958892
+0.973167
+1.003772
+1.011401
+1.017241
+1.019965
+1.022784
+1.022811
+1.029634
+1.032037
+1.052680
+1.058933
+1.076579
+1.081622
+1.110023
+1.115375
+1.127450
+1.132957
+1.145342
+1.147704
+1.154987
+1.174601
+1.180045
+1.182036
+1.187258
+1.198810
+1.210624
+1.212578
+1.261184
+1.267018
+1.267777
+1.273390
+1.282610
+1.300897
+1.326752
+1.338079
+1.339607
+1.395563
+1.408614
+1.495111
+1.642898
+1.749026
+1.889176
+1.895556
+1.955488
+2.047427
diff --git a/results/20110303/delayed-20.0 b/results/20110303/delayed-20.0
new file mode 100644 (file)
index 0000000..495ba79
--- /dev/null
@@ -0,0 +1,25 @@
+0.390988
+0.402942
+0.411080
+0.433012
+0.434624
+0.443926
+0.445054
+0.457698
+0.461030
+0.534086
+0.567039
+0.739074
+0.854176
+0.909808
+0.950606
+0.999685
+1.051411
+1.067189
+1.103095
+1.166074
+1.186522
+1.263602
+1.282645
+1.286468
+1.298761
diff --git a/results/20110303/delayed-32k-0.0 b/results/20110303/delayed-32k-0.0
new file mode 100644 (file)
index 0000000..f30381a
--- /dev/null
@@ -0,0 +1,100 @@
+0.050511
+0.054297
+0.058741
+0.059156
+0.079442
+0.079650
+0.080362
+0.080641
+0.081985
+0.082261
+0.082993
+0.084587
+0.085544
+0.085923
+0.086162
+0.088966
+0.088995
+0.094531
+0.096123
+0.109547
+0.110121
+0.110161
+0.111082
+0.111949
+0.112424
+0.112545
+0.112955
+0.113912
+0.114192
+0.115173
+0.116086
+0.116433
+0.116800
+0.116924
+0.117180
+0.117657
+0.118497
+0.118585
+0.119053
+0.119153
+0.119386
+0.119539
+0.119992
+0.120176
+0.140980
+0.142680
+0.142938
+0.144320
+0.144654
+0.146099
+0.146373
+0.146677
+0.147149
+0.147629
+0.148474
+0.148881
+0.149193
+0.150094
+0.151650
+0.151661
+0.152048
+0.152597
+0.153456
+0.154150
+0.154817
+0.156015
+0.162354
+0.163799
+0.173785
+0.176495
+0.177136
+0.177474
+0.177502
+0.177627
+0.178583
+0.179070
+0.179467
+0.180202
+0.180619
+0.181565
+0.182264
+0.183166
+0.185578
+0.188282
+0.190337
+0.203066
+0.203846
+0.204499
+0.206855
+0.207462
+0.210381
+0.210429
+0.210724
+0.212850
+0.214275
+0.214334
+0.216531
+0.266959
+0.272408
+0.292116
diff --git a/results/20110303/delayed-32k-0.05 b/results/20110303/delayed-32k-0.05
new file mode 100644 (file)
index 0000000..369f284
--- /dev/null
@@ -0,0 +1,100 @@
+0.054543
+0.055707
+0.055840
+0.057670
+0.058359
+0.079060
+0.080863
+0.083167
+0.083600
+0.084641
+0.084959
+0.085274
+0.087076
+0.087226
+0.089860
+0.091622
+0.092622
+0.094676
+0.098202
+0.100194
+0.105741
+0.106904
+0.112990
+0.113947
+0.114241
+0.114382
+0.114764
+0.115013
+0.115891
+0.116694
+0.117704
+0.118195
+0.119757
+0.121045
+0.121259
+0.121433
+0.124169
+0.137231
+0.142407
+0.142720
+0.142996
+0.143092
+0.143675
+0.143808
+0.144254
+0.144467
+0.144553
+0.144730
+0.145155
+0.145400
+0.145407
+0.146279
+0.146332
+0.146851
+0.146879
+0.147159
+0.148068
+0.148534
+0.148703
+0.149040
+0.150520
+0.150722
+0.151229
+0.152769
+0.153128
+0.155845
+0.156152
+0.162213
+0.162770
+0.167461
+0.172039
+0.173068
+0.174267
+0.175849
+0.175986
+0.176755
+0.178026
+0.178143
+0.178598
+0.180062
+0.181085
+0.182205
+0.183860
+0.186299
+0.203646
+0.207913
+0.210895
+0.211236
+0.211332
+0.213342
+0.213387
+0.222899
+0.242786
+0.254894
+0.304270
+0.348817
+0.401888
+0.432939
+0.451723
+0.657605
diff --git a/results/20110303/delayed-32k-0.1 b/results/20110303/delayed-32k-0.1
new file mode 100644 (file)
index 0000000..9a35db4
--- /dev/null
@@ -0,0 +1,100 @@
+0.061316
+0.062695
+0.081332
+0.081381
+0.082376
+0.082631
+0.082872
+0.083342
+0.083684
+0.084227
+0.085289
+0.086659
+0.086956
+0.088891
+0.089130
+0.091918
+0.093866
+0.097592
+0.103996
+0.108989
+0.113105
+0.114820
+0.115797
+0.117205
+0.119395
+0.119625
+0.121773
+0.125560
+0.141778
+0.143074
+0.143402
+0.143853
+0.144063
+0.144213
+0.144268
+0.145153
+0.145232
+0.145572
+0.146302
+0.146584
+0.146594
+0.146672
+0.146713
+0.147186
+0.147186
+0.147806
+0.147861
+0.148270
+0.148343
+0.148463
+0.148935
+0.151700
+0.154246
+0.154473
+0.154920
+0.155683
+0.172640
+0.172671
+0.173094
+0.173899
+0.175142
+0.175846
+0.176942
+0.177025
+0.177855
+0.178012
+0.178725
+0.179091
+0.179113
+0.179149
+0.179716
+0.179931
+0.180601
+0.180664
+0.182108
+0.186268
+0.186772
+0.191061
+0.193905
+0.200740
+0.202269
+0.204568
+0.204756
+0.207366
+0.207554
+0.209503
+0.209786
+0.210130
+0.225672
+0.238177
+0.239686
+0.244862
+0.247745
+0.263626
+0.270692
+0.271206
+0.277288
+0.281160
+0.290566
+0.326715
diff --git a/results/20110303/delayed-32k-0.2 b/results/20110303/delayed-32k-0.2
new file mode 100644 (file)
index 0000000..a29dd2b
--- /dev/null
@@ -0,0 +1,100 @@
+0.051229
+0.055839
+0.080114
+0.081135
+0.081317
+0.082372
+0.084222
+0.084567
+0.084798
+0.084836
+0.086455
+0.087067
+0.087354
+0.087781
+0.088950
+0.089852
+0.090349
+0.090793
+0.095657
+0.111207
+0.111718
+0.111844
+0.112879
+0.113283
+0.113368
+0.113543
+0.115195
+0.115423
+0.115952
+0.118051
+0.118808
+0.123015
+0.125905
+0.138984
+0.139616
+0.141187
+0.141782
+0.141894
+0.142997
+0.143049
+0.143564
+0.143708
+0.143915
+0.143949
+0.143972
+0.144351
+0.144742
+0.145129
+0.145760
+0.147120
+0.147399
+0.147805
+0.148280
+0.148280
+0.148398
+0.148535
+0.148641
+0.149021
+0.149150
+0.149529
+0.149582
+0.150508
+0.151885
+0.152901
+0.153541
+0.154280
+0.155576
+0.160511
+0.165498
+0.171553
+0.175445
+0.175811
+0.175999
+0.176863
+0.177334
+0.178877
+0.181162
+0.181953
+0.190248
+0.204231
+0.204374
+0.206415
+0.207144
+0.208548
+0.208571
+0.209126
+0.210010
+0.217252
+0.217337
+0.221612
+0.226304
+0.227944
+0.231871
+0.232878
+0.238661
+0.242241
+0.295087
+0.303693
+0.356014
+0.447548
diff --git a/results/20110303/delayed-32k-0.5 b/results/20110303/delayed-32k-0.5
new file mode 100644 (file)
index 0000000..ab29e2d
--- /dev/null
@@ -0,0 +1,100 @@
+0.050181
+0.056770
+0.080344
+0.081115
+0.081205
+0.081966
+0.083051
+0.083884
+0.084297
+0.084367
+0.084555
+0.084668
+0.085237
+0.086108
+0.086320
+0.088666
+0.090119
+0.090156
+0.097181
+0.104000
+0.109204
+0.109719
+0.111050
+0.111294
+0.111617
+0.112503
+0.112747
+0.112763
+0.113740
+0.113745
+0.113858
+0.114421
+0.114755
+0.116260
+0.116415
+0.116417
+0.116457
+0.116836
+0.116943
+0.118339
+0.118443
+0.118628
+0.118650
+0.119927
+0.121607
+0.122090
+0.135350
+0.140991
+0.142943
+0.143861
+0.145487
+0.145611
+0.145974
+0.146071
+0.146314
+0.146469
+0.146572
+0.146808
+0.147444
+0.148279
+0.148323
+0.148442
+0.149093
+0.149173
+0.151041
+0.152246
+0.153807
+0.156048
+0.156496
+0.160359
+0.162370
+0.174087
+0.174119
+0.175214
+0.176968
+0.178927
+0.180008
+0.180107
+0.181652
+0.182890
+0.184962
+0.200864
+0.202752
+0.203622
+0.203671
+0.205203
+0.205375
+0.205525
+0.206917
+0.212017
+0.212892
+0.226571
+0.236196
+0.236294
+0.239311
+0.246852
+0.338904
+0.344915
+0.392313
+0.414879
diff --git a/results/20110303/delayed-32k-1.0 b/results/20110303/delayed-32k-1.0
new file mode 100644 (file)
index 0000000..83885c7
--- /dev/null
@@ -0,0 +1,100 @@
+0.046176
+0.048749
+0.053148
+0.053409
+0.055209
+0.061309
+0.080242
+0.080414
+0.081729
+0.082032
+0.082543
+0.083573
+0.086744
+0.088487
+0.089026
+0.089562
+0.090413
+0.090762
+0.091336
+0.092284
+0.092757
+0.095982
+0.100829
+0.110655
+0.111463
+0.112244
+0.112692
+0.113412
+0.113763
+0.114014
+0.114295
+0.114622
+0.115278
+0.115327
+0.115420
+0.115830
+0.116343
+0.116788
+0.118428
+0.118774
+0.118863
+0.122331
+0.124179
+0.124732
+0.127756
+0.128166
+0.140287
+0.141242
+0.141491
+0.141845
+0.142832
+0.144036
+0.144126
+0.144203
+0.144233
+0.144606
+0.145393
+0.145443
+0.145495
+0.146743
+0.146879
+0.147128
+0.147330
+0.147935
+0.147951
+0.148025
+0.148709
+0.150375
+0.151710
+0.151847
+0.151985
+0.153369
+0.155021
+0.155248
+0.156686
+0.163877
+0.171684
+0.173891
+0.176166
+0.176562
+0.178729
+0.179956
+0.180183
+0.180185
+0.180675
+0.181129
+0.183774
+0.199631
+0.200579
+0.205000
+0.208527
+0.213547
+0.220279
+0.237779
+0.239098
+0.320761
+0.367914
+0.372510
+0.396346
+0.582553
diff --git a/results/20110303/delayed-32k-5.0 b/results/20110303/delayed-32k-5.0
new file mode 100644 (file)
index 0000000..c5e2432
--- /dev/null
@@ -0,0 +1,100 @@
+0.055297
+0.056286
+0.057140
+0.070808
+0.080753
+0.081155
+0.084632
+0.085450
+0.086277
+0.086341
+0.086382
+0.089156
+0.089857
+0.091216
+0.106707
+0.111423
+0.113776
+0.114049
+0.114465
+0.114648
+0.114810
+0.115158
+0.115289
+0.116108
+0.117335
+0.117710
+0.117956
+0.118120
+0.119009
+0.119146
+0.119450
+0.121565
+0.123881
+0.137107
+0.138260
+0.138768
+0.139205
+0.141316
+0.141574
+0.142224
+0.143150
+0.143380
+0.144256
+0.144850
+0.144983
+0.145476
+0.145816
+0.146352
+0.146917
+0.146976
+0.147020
+0.147369
+0.147530
+0.147551
+0.148345
+0.148636
+0.148921
+0.149275
+0.149351
+0.151530
+0.151766
+0.152644
+0.155933
+0.156408
+0.157264
+0.159263
+0.163762
+0.165332
+0.173175
+0.173451
+0.174899
+0.178397
+0.179618
+0.183408
+0.183968
+0.195013
+0.200402
+0.200691
+0.201840
+0.202359
+0.202657
+0.203731
+0.204633
+0.205161
+0.205673
+0.207079
+0.207406
+0.207679
+0.208110
+0.208521
+0.221622
+0.234881
+0.238395
+0.244143
+0.263821
+0.276820
+0.278085
+0.315231
+0.318853
+0.670811
diff --git a/results/20110303/delayed-4M-0.0 b/results/20110303/delayed-4M-0.0
new file mode 100644 (file)
index 0000000..ec03dfa
--- /dev/null
@@ -0,0 +1,100 @@
+0.249279
+0.314368
+0.346837
+0.375044
+0.411842
+0.415196
+0.439665
+0.460422
+0.464807
+0.478277
+0.485464
+0.488532
+0.529085
+0.537167
+0.564665
+0.666005
+0.704611
+0.727011
+0.803629
+0.812135
+0.822826
+0.844640
+0.921772
+0.949495
+0.974003
+0.974828
+0.990590
+1.009065
+1.020320
+1.031283
+1.046944
+1.082281
+1.101749
+1.114359
+1.122783
+1.133046
+1.134537
+1.140313
+1.146558
+1.160839
+1.185335
+1.195849
+1.200041
+1.211645
+1.218964
+1.276268
+1.280341
+1.284065
+1.312131
+1.340276
+1.341802
+1.441262
+1.567995
+1.617104
+1.631641
+1.681333
+1.715226
+1.953292
+2.072521
+2.080119
+2.083831
+2.112769
+2.119867
+2.175890
+2.179767
+2.187263
+2.232322
+2.259320
+2.285373
+2.351596
+2.372891
+2.378472
+2.383615
+2.392406
+2.424429
+2.444017
+2.447075
+2.447286
+2.469760
+2.482275
+2.558618
+2.578153
+2.619111
+2.636993
+2.674510
+2.718907
+2.720011
+2.740963
+2.768004
+2.784470
+2.817824
+2.856118
+2.866775
+2.867504
+2.950767
+2.983805
+2.986390
+3.043857
+3.073880
+3.127616
diff --git a/results/20110303/delayed-4M-0.05 b/results/20110303/delayed-4M-0.05
new file mode 100644 (file)
index 0000000..5b987a1
--- /dev/null
@@ -0,0 +1,100 @@
+0.552928
+0.639238
+0.716189
+0.750733
+0.753163
+0.823415
+0.850954
+0.938646
+0.943473
+0.954140
+0.958521
+0.959336
+0.963612
+0.970539
+0.977850
+0.988118
+0.991040
+0.993781
+0.994277
+1.005108
+1.030365
+1.031560
+1.088944
+1.095297
+1.100341
+1.124663
+1.131530
+1.147405
+1.151117
+1.180387
+1.181503
+1.184412
+1.184472
+1.188862
+1.231856
+1.234845
+1.236993
+1.264385
+1.301163
+1.403488
+1.490286
+1.500510
+1.603547
+1.683526
+1.832743
+1.833147
+1.833774
+1.852892
+1.855760
+1.890167
+1.896033
+1.955922
+1.964989
+1.980117
+2.045993
+2.100862
+2.101885
+2.113713
+2.125388
+2.128058
+2.163361
+2.180598
+2.181945
+2.222158
+2.231073
+2.254630
+2.258081
+2.275294
+2.319309
+2.331416
+2.346932
+2.351643
+2.352936
+2.382596
+2.422449
+2.444128
+2.444279
+2.449161
+2.467495
+2.469892
+2.473634
+2.527790
+2.570517
+2.573087
+2.613266
+2.620869
+2.652169
+2.672199
+2.718023
+2.753389
+2.754493
+2.756422
+2.800983
+2.813382
+2.845647
+2.903278
+2.907734
+2.977638
+3.046402
+3.908397
diff --git a/results/20110303/delayed-4M-0.1 b/results/20110303/delayed-4M-0.1
new file mode 100644 (file)
index 0000000..d82d4da
--- /dev/null
@@ -0,0 +1,100 @@
+0.614353
+0.688517
+0.831873
+0.852091
+0.852115
+0.856253
+0.862061
+0.862805
+0.875691
+0.917436
+0.919524
+0.920836
+0.925031
+0.938728
+0.945849
+0.981637
+0.984820
+1.002619
+1.029992
+1.030723
+1.046651
+1.071663
+1.096880
+1.097798
+1.099219
+1.111035
+1.127549
+1.143208
+1.149038
+1.154438
+1.156112
+1.161514
+1.185027
+1.190333
+1.199808
+1.205168
+1.219611
+1.223036
+1.260625
+1.261417
+1.282473
+1.292583
+1.313362
+1.338039
+1.351150
+1.432680
+1.528682
+1.559059
+1.584489
+1.662930
+1.672177
+1.724342
+1.752670
+1.777445
+1.941400
+1.964531
+1.985591
+2.011989
+2.137211
+2.147701
+2.195560
+2.249635
+2.324654
+2.336401
+2.340113
+2.352397
+2.363852
+2.365148
+2.373708
+2.380673
+2.381554
+2.383598
+2.399453
+2.404240
+2.414821
+2.440714
+2.457205
+2.474099
+2.520460
+2.563027
+2.574209
+2.632213
+2.677958
+2.757975
+2.791509
+2.823754
+2.828130
+2.829225
+2.852338
+2.857698
+2.889138
+2.894566
+2.900901
+2.925897
+2.974718
+2.977803
+3.014443
+3.351851
+3.364423
+3.881584
diff --git a/results/20110303/delayed-4M-0.2 b/results/20110303/delayed-4M-0.2
new file mode 100644 (file)
index 0000000..8ac8033
--- /dev/null
@@ -0,0 +1,100 @@
+0.629779
+0.641340
+0.704517
+0.759967
+0.766296
+0.786226
+0.787180
+0.845454
+0.869977
+0.883780
+0.924612
+0.939169
+0.944222
+0.944906
+0.956316
+0.960037
+0.964447
+0.978443
+0.999999
+1.001846
+1.004277
+1.004448
+1.012751
+1.013767
+1.019123
+1.025021
+1.039160
+1.055148
+1.067548
+1.078771
+1.094903
+1.109979
+1.150524
+1.153342
+1.161113
+1.177700
+1.189006
+1.199536
+1.203303
+1.214265
+1.261269
+1.285465
+1.400666
+1.410364
+1.426354
+1.495766
+1.661184
+1.791857
+1.830571
+1.838616
+1.981205
+2.046729
+2.072419
+2.084035
+2.092017
+2.098699
+2.103653
+2.125771
+2.130522
+2.131136
+2.158320
+2.159744
+2.166641
+2.215867
+2.244312
+2.253565
+2.293446
+2.323667
+2.329038
+2.335923
+2.338003
+2.343579
+2.349136
+2.358048
+2.368277
+2.368447
+2.370622
+2.372470
+2.373754
+2.374663
+2.470643
+2.496823
+2.516068
+2.526477
+2.541342
+2.552707
+2.553940
+2.570508
+2.589975
+2.597044
+2.616842
+2.625891
+2.632885
+2.656411
+2.687338
+2.704146
+2.884590
+3.296346
+3.427098
+3.738751
diff --git a/results/20110303/delayed-4M-0.5 b/results/20110303/delayed-4M-0.5
new file mode 100644 (file)
index 0000000..1ac1641
--- /dev/null
@@ -0,0 +1,100 @@
+0.582095
+0.668363
+0.706721
+0.741672
+0.764275
+0.765957
+0.778590
+0.794790
+0.796655
+0.824685
+0.851995
+0.855164
+0.868892
+0.884442
+0.885236
+0.890878
+0.892324
+0.898739
+0.939309
+0.942472
+0.944141
+0.947157
+0.948206
+0.953260
+0.955941
+0.961441
+0.967481
+0.978688
+0.984320
+1.037582
+1.045297
+1.063584
+1.064999
+1.070973
+1.071216
+1.091591
+1.123857
+1.125554
+1.132126
+1.133169
+1.162269
+1.164428
+1.176077
+1.186134
+1.225233
+1.677441
+1.702386
+1.704883
+1.716209
+1.853777
+1.890348
+1.937262
+1.941348
+1.955161
+1.983013
+2.043339
+2.066333
+2.077303
+2.098316
+2.098839
+2.104765
+2.129814
+2.131787
+2.183602
+2.190065
+2.199384
+2.201008
+2.229302
+2.233700
+2.251167
+2.256768
+2.276689
+2.279320
+2.288197
+2.324134
+2.380089
+2.400855
+2.438785
+2.447823
+2.451627
+2.469616
+2.475684
+2.527807
+2.537097
+2.548069
+2.551425
+2.553856
+2.628098
+2.628182
+2.632048
+2.650939
+2.652532
+2.653796
+2.656414
+2.667783
+2.686912
+2.702786
+2.717172
+2.728330
+3.981596
diff --git a/results/20110303/delayed-4M-1.0 b/results/20110303/delayed-4M-1.0
new file mode 100644 (file)
index 0000000..12e0dde
--- /dev/null
@@ -0,0 +1,100 @@
+0.617396
+0.677553
+0.683805
+0.725615
+0.770329
+0.801344
+0.827408
+0.834091
+0.836653
+0.857343
+0.860487
+0.863623
+0.881084
+0.884267
+0.889550
+0.914776
+0.917064
+0.918182
+0.920026
+0.921844
+0.923776
+0.923990
+0.938026
+0.939498
+0.941943
+0.944139
+0.945175
+0.949576
+0.953278
+0.953307
+0.978114
+0.979960
+1.006109
+1.009963
+1.017351
+1.066214
+1.068720
+1.074417
+1.078536
+1.092280
+1.123310
+1.132289
+1.158574
+1.159613
+1.161987
+1.222385
+1.310375
+1.371241
+1.379288
+1.521264
+1.536066
+1.591193
+1.741610
+1.757200
+1.796344
+1.829584
+1.842225
+1.898279
+1.911051
+1.996262
+2.000472
+2.025023
+2.079287
+2.144612
+2.196246
+2.200721
+2.217499
+2.219570
+2.229087
+2.235808
+2.236457
+2.285653
+2.376321
+2.382566
+2.399083
+2.399822
+2.411864
+2.411913
+2.414638
+2.431091
+2.432025
+2.442098
+2.469709
+2.515035
+2.515900
+2.523271
+2.538962
+2.566348
+2.593975
+2.597033
+2.614502
+2.622525
+2.674539
+2.714479
+2.720309
+2.743399
+2.781937
+3.007502
+3.179233
+3.625492
diff --git a/results/20110303/delayed-4M-5.0 b/results/20110303/delayed-4M-5.0
new file mode 100644 (file)
index 0000000..3a2c22d
--- /dev/null
@@ -0,0 +1,100 @@
+0.672043
+0.735387
+0.764878
+0.790019
+0.793772
+0.821542
+0.849910
+0.850228
+0.863968
+0.885449
+0.895749
+0.897239
+0.943341
+0.945185
+0.945685
+0.945766
+0.947843
+0.948197
+0.948793
+0.949670
+0.952426
+0.956986
+0.960660
+0.977878
+0.982810
+0.983027
+0.983127
+1.001401
+1.053787
+1.062665
+1.073479
+1.090551
+1.099383
+1.131017
+1.148820
+1.178891
+1.191368
+1.199024
+1.252016
+1.271148
+1.290712
+1.436821
+1.460833
+1.645065
+1.704691
+1.712037
+1.719909
+1.782223
+1.797583
+1.867198
+1.869498
+1.882780
+1.947580
+1.961330
+2.017202
+2.021117
+2.025818
+2.035417
+2.054988
+2.072693
+2.079442
+2.085753
+2.119429
+2.128442
+2.171364
+2.196156
+2.229681
+2.282652
+2.306233
+2.338263
+2.340343
+2.344078
+2.344757
+2.357295
+2.359459
+2.373736
+2.375530
+2.380872
+2.384043
+2.407929
+2.414551
+2.429191
+2.463980
+2.466075
+2.467854
+2.557221
+2.582248
+2.614858
+2.648396
+2.741923
+2.769161
+2.986368
+3.035593
+3.093046
+3.180835
+3.362880
+3.694520
+4.155671
+5.162631
+6.799926
diff --git a/results/20110303/delayed-5.0 b/results/20110303/delayed-5.0
new file mode 100644 (file)
index 0000000..c7861cd
--- /dev/null
@@ -0,0 +1,50 @@
+0.390245
+0.402147
+0.406042
+0.408892
+0.415167
+0.428297
+0.436971
+0.453676
+0.498220
+0.504702
+0.505806
+0.534358
+0.541782
+0.557099
+0.562759
+0.570981
+0.683837
+0.751702
+0.812555
+0.818473
+0.860675
+0.866000
+0.879311
+0.907203
+0.998247
+1.000964
+1.024189
+1.028631
+1.030019
+1.034992
+1.047751
+1.053993
+1.054890
+1.079709
+1.094494
+1.112894
+1.118219
+1.144986
+1.158504
+1.222348
+1.227449
+1.276266
+1.284782
+1.290063
+1.299466
+1.309016
+1.310428
+1.412999
+1.464711
+1.939114
diff --git a/results/20110303/delayed.gnuplot b/results/20110303/delayed.gnuplot
new file mode 100644 (file)
index 0000000..7812d31
--- /dev/null
@@ -0,0 +1,8 @@
+plot "./delayed-0.0" using 1:0 with steps, "./delayed-0.05" using 1:0 with steps, "./delayed-0.1" using 1:($0/2) with steps, "./delayed-0.2" using 1:0 with steps, "./delayed-0.5" using 1:0 with steps, "./delayed-1.0" using 1:0 with steps, "./delayed-5.0" using 1:($0*2) with steps, "./delayed-20.0" using 1:($0*4) with steps
+
+plot "./delayed-32k-0.0" using 1:0 with steps, "./delayed-32k-0.05" using 1:0 with steps, "./delayed-32k-0.1" using 1:0 with steps, "./delayed-32k-0.2" using 1:0 with steps, "./delayed-32k-0.5" using 1:0 with steps, "./delayed-32k-1.0" using 1:0 with steps, "./delayed-32k-5.0" using 1:0 with steps
+
+plot "./delayed-1M-0.0" using 1:0 with steps, "./delayed-1M-0.05" using 1:0 with steps, "./delayed-1M-0.1" using 1:0 with steps, "./delayed-1M-0.2" using 1:0 with steps, "./delayed-1M-0.5" using 1:0 with steps, "./delayed-1M-1.0" using 1:0 with steps, "./delayed-1M-5.0" using 1:0 with steps
+
+plot "./delayed-4M-0.0" using 1:0 with steps, "./delayed-4M-0.05" using 1:0 with steps, "./delayed-4M-0.1" using 1:0 with steps, "./delayed-4M-0.2" using 1:0 with steps, "./delayed-4M-0.5" using 1:0 with steps, "./delayed-4M-1.0" using 1:0 with steps, "./delayed-4M-5.0" using 1:0 with step
+