-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add examples and run them in the ci
- Loading branch information
1 parent
fd88ad5
commit 54d43cc
Showing
41 changed files
with
3,358 additions
and
5,445 deletions.
There are no files selected for viewing
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,18 @@ | ||
const { withCodSpeed } = require("@codspeed/benchmark.js-plugin"); | ||
const Benchmark = require("benchmark"); | ||
|
||
const suite = withCodSpeed(new Benchmark.Suite()); | ||
|
||
suite | ||
.add("RegExp#test", function () { | ||
/o/.test("Hello World!"); | ||
}) | ||
.add("String#indexOf", function () { | ||
"Hello World!".indexOf("o") > -1; | ||
}) | ||
// add listeners | ||
.on("cycle", function (event) { | ||
console.log(String(event.target)); | ||
}) | ||
// run async | ||
.run({ async: true }); |
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,14 @@ | ||
{ | ||
"name": "with-javascript-cjs", | ||
"private": true, | ||
"scripts": { | ||
"bench-benchmark-js": "node benchmark-js.js", | ||
"bench-tinybench": "node tinybench.js" | ||
}, | ||
"devDependencies": { | ||
"@codspeed/benchmark.js-plugin": "workspace:^1.1.0", | ||
"@codspeed/tinybench-plugin": "workspace:^1.1.0", | ||
"benchmark": "^2.1.4", | ||
"tinybench": "^2.5.0" | ||
} | ||
} |
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,30 @@ | ||
const { withCodSpeed } = require("@codspeed/tinybench-plugin"); | ||
const { Bench } = require("tinybench"); | ||
|
||
const bench = withCodSpeed(new Bench({ time: 100 })); | ||
|
||
bench | ||
.add("switch 1", () => { | ||
let a = 1; | ||
let b = 2; | ||
const c = a; | ||
a = b; | ||
b = c; | ||
}) | ||
.add("switch 2", () => { | ||
let a = 1; | ||
let b = 10; | ||
a = b + a; | ||
b = a - b; | ||
a = b - a; | ||
}); | ||
|
||
bench.run().then(() => { | ||
console.table( | ||
bench.tasks.map(({ name, result }) => ({ | ||
"Task Name": name, | ||
"Average Time (ps)": result?.mean ? result.mean * 1000 : "N/A", | ||
"Variance (ps)": result?.variance ? result.variance * 1000 : "N/A", | ||
})) | ||
); | ||
}); |
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,18 @@ | ||
import { withCodSpeed } from "@codspeed/benchmark.js-plugin"; | ||
import Benchmark from "benchmark"; | ||
|
||
const suite = withCodSpeed(new Benchmark.Suite()); | ||
|
||
suite | ||
.add("RegExp#test", function () { | ||
/o/.test("Hello World!"); | ||
}) | ||
.add("String#indexOf", function () { | ||
"Hello World!".indexOf("o") > -1; | ||
}) | ||
// add listeners | ||
.on("cycle", function (event) { | ||
console.log(String(event.target)); | ||
}) | ||
// run async | ||
.run({ async: true }); |
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,15 @@ | ||
{ | ||
"name": "with-javascript-esm", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"bench-benchmark-js": "node benchmark-js.js", | ||
"bench-tinybench": "node tinybench.js" | ||
}, | ||
"devDependencies": { | ||
"@codspeed/benchmark.js-plugin": "workspace:^1.1.0", | ||
"@codspeed/tinybench-plugin": "workspace:^1.1.0", | ||
"benchmark": "^2.1.4", | ||
"tinybench": "^2.5.0" | ||
} | ||
} |
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,30 @@ | ||
import { withCodSpeed } from "@codspeed/tinybench-plugin"; | ||
import { Bench } from "tinybench"; | ||
|
||
const bench = withCodSpeed(new Bench({ time: 100 })); | ||
|
||
bench | ||
.add("switch 1", () => { | ||
let a = 1; | ||
let b = 2; | ||
const c = a; | ||
a = b; | ||
b = c; | ||
}) | ||
.add("switch 2", () => { | ||
let a = 1; | ||
let b = 10; | ||
a = b + a; | ||
b = a - b; | ||
a = b - a; | ||
}); | ||
|
||
bench.run().then(() => { | ||
console.table( | ||
bench.tasks.map(({ name, result }) => ({ | ||
"Task Name": name, | ||
"Average Time (ps)": result?.mean ? result.mean * 1000 : "N/A", | ||
"Variance (ps)": result?.variance ? result.variance * 1000 : "N/A", | ||
})) | ||
); | ||
}); |
6 changes: 6 additions & 0 deletions
6
examples/with-typescript-cjs/bench/benchmark.js/branchingConfusion.bench.ts
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,6 @@ | ||
import { branching_confusion } from "../../src/branchingConfusion"; | ||
import { suite } from "./index.bench"; | ||
|
||
suite.add("test branching confusion", () => { | ||
branching_confusion(); | ||
}); |
33 changes: 33 additions & 0 deletions
33
examples/with-typescript-cjs/bench/benchmark.js/fibo.bench.ts
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,33 @@ | ||
import { | ||
iterativeFibonacci, | ||
recursiveCachedFibonacci, | ||
recursiveFibonacci, | ||
} from "../../src/fibonacci"; | ||
import { suite } from "./index.bench"; | ||
|
||
suite | ||
.add("test_recursive_fibo_10", () => { | ||
recursiveFibonacci(10); | ||
}) | ||
.add("test_recursive_fibo_20", () => { | ||
recursiveFibonacci(20); | ||
}); | ||
|
||
suite | ||
.add("test_recursive_cached_fibo_10", () => { | ||
recursiveCachedFibonacci(10); | ||
}) | ||
.add("test_recursive_cached_fibo_20", () => { | ||
recursiveCachedFibonacci(20); | ||
}) | ||
.add("test_recursive_cached_fibo_30", () => { | ||
recursiveCachedFibonacci(30); | ||
}); | ||
|
||
suite | ||
.add("test_iterative_fibo_10", () => { | ||
iterativeFibonacci(10); | ||
}) | ||
.add("test_iterative_fibo_100", () => { | ||
iterativeFibonacci(100); | ||
}); |
18 changes: 18 additions & 0 deletions
18
examples/with-typescript-cjs/bench/benchmark.js/foobarbaz.bench.ts
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,18 @@ | ||
import { aBaz, baz } from "../../src/foobarbaz"; | ||
import { suite } from "./index.bench"; | ||
|
||
suite | ||
.add("test sync baz 10", () => { | ||
baz(10); | ||
}) | ||
.add("test sync baz 100", () => { | ||
baz(100); | ||
}); | ||
|
||
suite | ||
.add("test async baz 10", async () => { | ||
await aBaz(10); | ||
}) | ||
.add("test async baz 100", async () => { | ||
await aBaz(100); | ||
}); |
16 changes: 16 additions & 0 deletions
16
examples/with-typescript-cjs/bench/benchmark.js/index.bench.ts
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,16 @@ | ||
import { withCodSpeed } from "@codspeed/benchmark.js-plugin"; | ||
import Benchmark from "benchmark"; | ||
|
||
export const suite = withCodSpeed(new Benchmark.Suite()); | ||
|
||
(async () => { | ||
await import("./fibo.bench"); | ||
await import("./foobarbaz.bench"); | ||
await import("./branchingConfusion.bench"); | ||
|
||
suite.on("cycle", function (event: Benchmark.Event) { | ||
console.log(String(event.target)); | ||
}); | ||
|
||
await suite.run({ async: true }); | ||
})(); |
6 changes: 6 additions & 0 deletions
6
examples/with-typescript-cjs/bench/tinybench/branchingConfusion.bench.ts
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,6 @@ | ||
import { branching_confusion } from "../../src/branchingConfusion"; | ||
import { bench } from "./index.bench"; | ||
|
||
bench.add("test branching confusion", () => { | ||
branching_confusion(); | ||
}); |
33 changes: 33 additions & 0 deletions
33
examples/with-typescript-cjs/bench/tinybench/fibo.bench.ts
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,33 @@ | ||
import { | ||
iterativeFibonacci, | ||
recursiveCachedFibonacci, | ||
recursiveFibonacci, | ||
} from "../../src/fibonacci"; | ||
import { bench } from "./index.bench"; | ||
|
||
bench | ||
.add("test_recursive_fibo_10", () => { | ||
recursiveFibonacci(10); | ||
}) | ||
.add("test_recursive_fibo_20", () => { | ||
recursiveFibonacci(20); | ||
}); | ||
|
||
bench | ||
.add("test_recursive_cached_fibo_10", () => { | ||
recursiveCachedFibonacci(10); | ||
}) | ||
.add("test_recursive_cached_fibo_20", () => { | ||
recursiveCachedFibonacci(20); | ||
}) | ||
.add("test_recursive_cached_fibo_30", () => { | ||
recursiveCachedFibonacci(30); | ||
}); | ||
|
||
bench | ||
.add("test_iterative_fibo_10", () => { | ||
iterativeFibonacci(10); | ||
}) | ||
.add("test_iterative_fibo_100", () => { | ||
iterativeFibonacci(100); | ||
}); |
18 changes: 18 additions & 0 deletions
18
examples/with-typescript-cjs/bench/tinybench/foobarbaz.bench.ts
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,18 @@ | ||
import { aBaz, baz } from "../../src/foobarbaz"; | ||
import { bench } from "./index.bench"; | ||
|
||
bench | ||
.add("test sync baz 10", () => { | ||
baz(10); | ||
}) | ||
.add("test sync baz 100", () => { | ||
baz(100); | ||
}); | ||
|
||
bench | ||
.add("test async baz 10", async () => { | ||
await aBaz(10); | ||
}) | ||
.add("test async baz 100", async () => { | ||
await aBaz(100); | ||
}); |
19 changes: 19 additions & 0 deletions
19
examples/with-typescript-cjs/bench/tinybench/index.bench.ts
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,19 @@ | ||
import { withCodSpeed } from "@codspeed/tinybench-plugin"; | ||
import { Bench } from "tinybench"; | ||
|
||
export const bench = withCodSpeed(new Bench()); | ||
|
||
(async () => { | ||
await import("./fibo.bench"); | ||
await import("./foobarbaz.bench"); | ||
await import("./branchingConfusion.bench"); | ||
|
||
await bench.run(); | ||
console.table( | ||
bench.tasks.map(({ name, result }) => ({ | ||
"Task Name": name, | ||
"Average Time (ps)": result?.mean ? result.mean * 1000 : "N/A", | ||
"Variance (ps)": result?.variance ? result.variance * 1000 : "N/A", | ||
})) | ||
); | ||
})(); |
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,17 @@ | ||
{ | ||
"name": "with-typescript-cjs", | ||
"private": true, | ||
"scripts": { | ||
"bench-benchmark-js": "ts-node bench/benchmark.js/index.bench.ts", | ||
"bench-tinybench": "ts-node bench/tinybench/index.bench.ts" | ||
}, | ||
"devDependencies": { | ||
"@codspeed/benchmark.js-plugin": "workspace:^1.1.0", | ||
"@codspeed/tinybench-plugin": "workspace:^1.1.0", | ||
"@types/benchmark": "^2.1.2", | ||
"benchmark": "^2.1.4", | ||
"tinybench": "^2.5.0", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.1.3" | ||
} | ||
} |
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,28 @@ | ||
export function branching_confusion() { | ||
lazy_worker(); | ||
hard_worker(); | ||
} | ||
|
||
function lazy_worker() { | ||
maybe_work(false); | ||
} | ||
|
||
function hard_worker() { | ||
maybe_work(true); | ||
} | ||
|
||
function maybe_work(should_work: boolean) { | ||
if (should_work) { | ||
work(); | ||
} | ||
return; | ||
} | ||
|
||
function work() { | ||
let result = 0; | ||
for (let i = 0; i < 1000; i++) { | ||
result += 1; | ||
} | ||
|
||
return result; | ||
} |
Oops, something went wrong.