Skip to content

Commit a5ab7d3

Browse files
committed
[GR-15251] Update startup time measurements in documentation.
PullRequest: truffleruby/805
2 parents 6d4151f + 8b4cdcb commit a5ab7d3

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

doc/contributor/svm.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,27 +46,27 @@ startup performance than MRI.
4646

4747
| Implementation | Real Time (s) | Max RSS (MB) |
4848
| -------------- | ------------: | -----------: |
49-
| TruffleRuby SVM | 0.024 | 65 |
50-
| TruffleRuby JVM | 1.890 | 333 |
51-
| MRI 2.5.1 | 0.043 | 9 |
52-
| JRuby 9.1.16.0 | 1.212 | 154 |
53-
| Rubinius 3.100 | 0.137 | 70 |
49+
| TruffleRuby SVM | 0.025 | 65 |
50+
| MRI 2.6.2 | 0.048 | 14 |
51+
| Rubinius 3.107 | 0.150 | 78 |
52+
| JRuby 9.2.7.0 | 1.357 | 160 |
53+
| TruffleRuby JVM | 1.787 | 456 |
5454

5555
Run on Linux with an Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz with a SSD.
5656

5757
```bash
58-
$ cd graalvm-0.33
58+
$ cd graalvm-ce-1.0.0-rc15
5959
$ bin/ruby -e 'puts "Hello"' # TruffleRuby on the SVM
6060
$ bin/ruby --jvm -e 'puts "Hello"' # TruffleRuby on the JVM
6161

62-
$ chruby jruby-9.1.16.0
63-
$ jruby -e 'puts "Hello"'
64-
65-
$ chruby ruby-2.5.1
62+
$ chruby ruby-2.6.2
6663
$ ruby -e 'puts "Hello"'
6764

68-
$ chruby rbx-3.100
65+
$ chruby rbx-3.107
6966
$ rbx -e 'puts "Hello"'
67+
68+
$ chruby jruby-9.2.7.0
69+
$ jruby -e 'puts "Hello"'
7070
```
7171

7272
The real time and the maximum resident set size are measured with a custom

0 commit comments

Comments
 (0)