rational vs float - subtract, multiply, add, divide
JavaScript performance comparison
Preparation code
<script src="//raw.github.com/acerix/rational.js/master/src/rat.js">
</script>
<script>
Benchmark.prototype.setup = function() {
var test_cases = [
[3466463461, 134534331],
[12312337, 334534535],
[3453453, 3653450],
[53453453411, 365340],
[123453453, 3653453450],
[-173646341, 36345340],
[245345213, 2353523],
[212151121, 234234666],
[234235535, 234234666],
[-656755537, 65676767]
];
var float_1 = 1 / 10;
var float_2 = 111 / 3;
var rat_1 = rat.fromValues(1, 10);
var rat_2 = rat.fromValues(111, 3);
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
native float approximation |
|
pending… |
rational.js calculation |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published
- Revision 2: published
- Revision 3: published
- Revision 4: published
- Revision 5: published
- Revision 6: published
- Revision 7: published
- Revision 9: published
0 comments