wgpu-kit 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.zh-CN.md +3 -3
  2. package/package.json +1 -1
package/README.zh-CN.md CHANGED
@@ -4,7 +4,7 @@
4
4
  > 浏览器 GPGPU 中间层:WebGPU 计算的全套样板,打包成两层简单 API。
5
5
 
6
6
  **状态:公测就绪(v0.9.5)· 演示:[playground](playground/index.html) · [生命合集](playground/life.html) · [画廊](playground/gallery.html)**
7
- · **[API 参考(学习文档)](docs/API.md)** · **[文件结构](docs/STRUCTURE.md)** · [基准](docs/benchmarks.md) · API 设计 · 验证日志 · 路线图 · [CHANGELOG](CHANGELOG.md)
7
+ · **[API 参考(中文)](docs/API.zh-CN.md)** · [API Reference (English)](docs/API.md)
8
8
 
9
9
  ## Quick start
10
10
 
@@ -69,11 +69,11 @@ await integrate.run({ pos, vel }, { dt: 0.02 });
69
69
  | 邻域算法对比 | grid 比 O(N²) tiling 快 **6.7×**@16k,近似 O(N) | 同会话基准 |
70
70
  | 库体积 | core gzip **5.34 kB**;+particles **10.27 kB** | gzip -c |
71
71
 
72
- 完整数据与复现命令:开发仓库 benchmarks.md。基准方法学(含两次自我纠错)见验证日志 05
72
+ 完整基准数据与复现命令:[docs/benchmarks.md](docs/benchmarks.md)。
73
73
 
74
74
  ## 为什么
75
75
 
76
- 浏览器里用 GPU,今天只有四条路:纯 JS(慢)、裸写 WebGPU(~150 行仪式代码)、three.js TSL(锁引擎)、gpu.js(WebGL 时代,停滞)。"**简单 + 快 + 引擎无关**"的专用 WebGPU 计算库是空位。完整竞品分析:docs/research.md。
76
+ 浏览器里用 GPU,今天只有四条路:纯 JS(慢)、裸写 WebGPU(~150 行仪式代码)、three.js TSL(锁引擎)、gpu.js(WebGL 时代,停滞)。"**简单 + 快 + 引擎无关**"的专用 WebGPU 计算库是空位。
77
77
 
78
78
  ## 三条设计铁律
79
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wgpu-kit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Browser GPGPU middle layer: 100k particles in 5 lines. WebGPU compute without the boilerplate.",
5
5
  "type": "module",
6
6
  "license": "MIT",