快速上手

阅读时间约 1 分钟

GWebGPU

GWebGPU 版本号

CDN 使用

<script src="https://unpkg.com/@antv/g-webgpu"></script>

我们会暴露 GWebGPU 全局对象:

const world = window.GWebGPU.World.create({
  engineOptions: {
    supportCompute: true,
  },
});
const kernel = world.createKernel(precompiledBundle);

使用 @antv/g-webgpu

npm install --save @antv/g-webgpu
import { World } from '@antv/g-webgpu';

const world = World.create({
  engineOptions: {
    supportCompute: true,
  },
});
const kernel = world.createKernel(precompiledBundle);

安装 VS Code 扩展

安装 VS Code 扩展,获得更好的编程体验。

开始编写第一个并行计算任务

两个向量相加