Skip to content

Commit 57ead0c

Browse files
committed
add comment on what it is based
1 parent cad1292 commit 57ead0c

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

bench/algorithm/coro-prime-sieve/1.pony

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Based on the Rust #1 implementation.
2+
13
actor Main
24
new create(env: Env) =>
35
let n: USize =

bench/algorithm/fasta/1.pony

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Based on the Rust #1 implementation.
2+
13
use "collections"
24

35
class RNG

bench/algorithm/helloworld/1.pony

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Based on the C #1 implementation.
12
use "format"
23

34
actor Main

bench/algorithm/lru/1.pony

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use "collections"
22

3+
// Based on the Rust #1 implementation.
34
class LCG
45
let a: U32 = 1103515245
56
let c: U32 = 12345

bench/algorithm/spectral-norm/1.pony

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Single-threaded implementation of the spectral norm benchmark.
2+
13
actor Main
24
new create(env: Env) =>
35
let n: USize = try env.args(1)?.usize()? else 100 end

0 commit comments

Comments
 (0)