快速上手
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 扩展,获得更好的编程体验。