We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c4f7ae0 + 0069d86 commit 9fc5b54Copy full SHA for 9fc5b54
src/index.d.ts
@@ -13,9 +13,9 @@ export class GPU {
13
nativeFunctions: IGPUNativeFunction[];
14
addFunction(kernel: KernelFunction, settings?: IGPUFunctionSettings): this;
15
addNativeFunction(name: string, source: string): this;
16
- combineKernels(): KernelFunction;
+ combineKernels(...kernels: Function[]): KernelFunction;
17
createKernel(kernel: KernelFunction, settings?: IKernelSettings): IKernelRunShortcut;
18
- createKernelMap(): IKernelRunShortcut;
+ createKernelMap(subKernels: Object | Array<Function>, rootKernel: Function): IKernelRunShortcut;
19
destroy(): void;
20
Kernel: typeof Kernel;
21
mode: string;
0 commit comments