-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 808 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "webgpu-kernel-fusion-benchmarks",
"version": "0.1.0",
"description": "Benchmarks for 'Single-Kernel Fusion for Sequential Fitness Evaluation via WebGPU Compute Shaders'",
"scripts": {
"test": "node tests/paper_arithmetic.test.js",
"bench": "node benchmarks/bench.js",
"bench:rastrigin": "node benchmarks/bench.js --benchmark=rastrigin",
"bench:scaling": "node benchmarks/dim_scaling_benchmark.js",
"bench:comprehensive": "node benchmarks/comprehensive_benchmarks.js",
"bench:pytorch": "python3 benchmarks/pytorch_gpu_baseline.py",
"bench:jax": "python3 benchmarks/jax_baseline.py",
"bench:numpy": "python3 benchmarks/numpy_variance.py",
"bench:thermal": "node benchmarks/thermal_monitor.js"
},
"author": "Ahmet Baris Gunaydin",
"license": "MIT"
}