-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turning Sieve benchmarks into Enso benchmarks #8475
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
089de78
Turning Sieve benchmarks into Enso benchmarks
JaroslavTulach 4d13f13
Adding comparative benchmarks in JavaScript
JaroslavTulach 32177ba
std-benchmarks can run with all installed Truffle languages
Akirathan a2acce6
JavaScript benchmarks compute the right values
JaroslavTulach 13e569a
JavaScript benchmark from a file is eight times faster
JaroslavTulach c849ff9
Removing the JMH Sieve benchmarks in favor of Enso ones
JaroslavTulach File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
82 changes: 0 additions & 82 deletions
82
...untime/src/bench/java/org/enso/interpreter/bench/benchmarks/semantic/SieveBenchmarks.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
function Natural() { | ||
this.x = 2; | ||
}; | ||
Natural.prototype.next = function() { | ||
return this.x++; | ||
}; | ||
|
||
function Filter(number) { | ||
this.number = number; | ||
this.next = null; | ||
this.last = this; | ||
} | ||
Filter.prototype.acceptAndAdd = function(n) { | ||
var filter = this; | ||
var sqrt = Math.sqrt(n); | ||
for (;;) { | ||
if (n % filter.number === 0) { | ||
return false; | ||
} | ||
if (filter.number > sqrt) { | ||
break; | ||
} | ||
filter = filter.next; | ||
} | ||
var newFilter = new Filter(n); | ||
this.last.next = newFilter; | ||
this.last = newFilter; | ||
return true; | ||
}; | ||
|
||
function Primes(natural) { | ||
this.natural = natural; | ||
this.filter = null; | ||
} | ||
Primes.prototype.next = function() { | ||
for (;;) { | ||
var n = this.natural.next(); | ||
if (this.filter === null) { | ||
this.filter = new Filter(n); | ||
return n; | ||
} | ||
if (this.filter.acceptAndAdd(n)) { | ||
return n; | ||
} | ||
} | ||
}; | ||
|
||
function globalPrimes(upto) { | ||
var primes = new Primes(new Natural()); | ||
for (var cnt = 1;; cnt++) { | ||
res = primes.next(); | ||
if (cnt >= upto) { | ||
return res; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from Standard.Base import all | ||
|
||
from Standard.Test import Bench | ||
|
||
import project.Sieve.Sieve_Original | ||
import project.Sieve.Sieve_Ascribed | ||
import project.Sieve.Sieve_Without_Types | ||
import project.Sieve.Sieve_Java_Script | ||
|
||
# execute as | ||
# sbt:enso> runEngineDistribution --run test/Benchmarks Sieve | ||
# or as | ||
# sbt:enso> std-benchmarks/benchOnly Sieve | ||
|
||
options = Bench.options . set_warmup (Bench.phase_conf 3 5) . set_measure (Bench.phase_conf 3 3) | ||
|
||
collect_benches = Bench.build builder-> | ||
assert_prime nth = | ||
if nth==1299709 . not then Panic.throw "Wrong prime number: "+nth.to_text | ||
|
||
builder.group "Sieve" options group_builder-> | ||
group_builder.specify "Original" <| | ||
assert_prime <| Sieve_Original.compute_nth_prime 100000 | ||
group_builder.specify "Ascribed" <| | ||
assert_prime <| Sieve_Ascribed.compute_nth_prime 100000 | ||
group_builder.specify "Without_Types" <| | ||
assert_prime <| Sieve_Without_Types.compute_nth_prime 100000 | ||
group_builder.specify "Java_Script_File" <| | ||
assert_prime <| Sieve_Java_Script.compute_nth_prime_from_js_file 100000 | ||
group_builder.specify "Java_Script_All" <| | ||
assert_prime <| Sieve_Java_Script.all_in_java_script 100000 | ||
group_builder.specify "Java_Script_Natural" <| | ||
assert_prime <| Sieve_Java_Script.compute_nth_prime_natural_in_js 100000 | ||
group_builder.specify "Java_Script_Filter" <| | ||
assert_prime <| Sieve_Java_Script.compute_nth_prime_filter_in_js 100000 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
from Standard.Base import all | ||
|
||
import project.Sieve.Sieve_Without_Types | ||
|
||
foreign js natural_in_js = """ | ||
class Gen { | ||
constructor() { | ||
this.n = 2 | ||
} | ||
|
||
n() { | ||
return this.n | ||
} | ||
|
||
next() { | ||
this.n++ | ||
return this | ||
} | ||
} | ||
return new Gen() | ||
|
||
compute_nth_prime_natural_in_js = Sieve_Without_Types.compute_nth_prime gen=natural_in_js | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These JavaScript benchmarks work with:
but not with |
||
|
||
foreign js filter_in_js = """ | ||
function Filter(number) { | ||
this.number = number; | ||
this.next = null; | ||
this.last = this; | ||
} | ||
Filter.prototype.acceptAndAdd = function(n) { | ||
var filter = this; | ||
var sqrt = Math.sqrt(n); | ||
while (filter != null) { | ||
if (filter.number) { | ||
if (n % filter.number === 0) { | ||
return null; | ||
} | ||
if (filter.number > sqrt) { | ||
break; | ||
} | ||
} | ||
filter = filter.next; | ||
} | ||
var newFilter = new Filter(n); | ||
this.last.next = newFilter; | ||
this.last = newFilter; | ||
return this; | ||
}; | ||
return new Filter(null); | ||
|
||
compute_nth_prime_filter_in_js = Sieve_Without_Types.compute_nth_prime fil=filter_in_js | ||
|
||
compute_nth_prime_from_js_file n = | ||
script = enso_project.data/"sieve.js" | ||
bench_external_file script.to_text n | ||
|
||
foreign js bench_external_file script n = """ | ||
if (!globalThis.globalPrimes) { | ||
Polyglot.evalFile("js", script.toString()); | ||
} | ||
return globalPrimes(n); | ||
|
||
type Primes | ||
Alg generator filter | ||
|
||
Primes.next self = case self of | ||
Primes.Alg g f -> | ||
filter = f.acceptAndAdd g.n | ||
new_primes = Primes.Alg g.next filter | ||
if Meta.is_same_object filter f then @Tail_Call new_primes.next else new_primes | ||
|
||
Primes.last_prime self = case self of | ||
Primes.Alg g _ -> g.n - 1 | ||
|
||
foreign js all_in_java_script n = """ | ||
function Natural() { | ||
this.x = 2; | ||
}; | ||
Natural.prototype.next = function() { | ||
return this.x++; | ||
}; | ||
|
||
function Filter(number) { | ||
this.number = number; | ||
this.next = null; | ||
this.last = this; | ||
} | ||
Filter.prototype.acceptAndAdd = function(n) { | ||
var filter = this; | ||
var sqrt = Math.sqrt(n); | ||
for (;;) { | ||
if (n % filter.number === 0) { | ||
return false; | ||
} | ||
if (filter.number > sqrt) { | ||
break; | ||
} | ||
filter = filter.next; | ||
} | ||
var newFilter = new Filter(n); | ||
this.last.next = newFilter; | ||
this.last = newFilter; | ||
return true; | ||
}; | ||
|
||
function Primes(natural) { | ||
this.natural = natural; | ||
this.filter = null; | ||
} | ||
Primes.prototype.next = function() { | ||
for (;;) { | ||
var n = this.natural.next(); | ||
if (this.filter === null) { | ||
this.filter = new Filter(n); | ||
return n; | ||
} | ||
if (this.filter.acceptAndAdd(n)) { | ||
return n; | ||
} | ||
} | ||
}; | ||
|
||
var res = -1; | ||
let primes = new Primes(new Natural()); | ||
for (let i = 0; i < n; i++) { | ||
res = primes.next(); | ||
} | ||
return res; | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought it was going to be a classpath issue, not "restricted to Enso language" issue! Thank you for your help, @Akirathan!