File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export class Tensor implements TensorInterface {
103
103
}
104
104
case 'gpu-buffer' : {
105
105
if ( ( type !== 'float32' && type !== 'float16' && type !== 'int32' && type !== 'int64' && type !== 'uint32' &&
106
- type !== 'bool' ) ) {
106
+ type !== 'uint8' && type !== ' bool') ) {
107
107
throw new TypeError ( `unsupported type "${ type } " to create tensor from gpu buffer` ) ;
108
108
}
109
109
this . gpuBufferData = arg0 . gpuBuffer ;
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ export declare namespace Tensor {
135
135
/**
136
136
* supported data types for constructing a tensor from a WebGPU buffer
137
137
*/
138
- export type GpuBufferDataTypes = 'float32' | 'float16' | 'int32' | 'int64' | 'uint32' | 'bool' ;
138
+ export type GpuBufferDataTypes = 'float32' | 'float16' | 'int32' | 'int64' | 'uint32' | 'uint8' | ' bool';
139
139
140
140
/**
141
141
* represent where the tensor data is stored
Original file line number Diff line number Diff line change @@ -169,7 +169,8 @@ export const logLevelStringToEnum = (logLevel?: 'verbose'|'info'|'warning'|'erro
169
169
* Check whether the given tensor type is supported by GPU buffer
170
170
*/
171
171
export const isGpuBufferSupportedType = ( type : Tensor . Type ) : type is Tensor . GpuBufferDataTypes => type === 'float32' ||
172
- type === 'int32' || type === 'int64' || type === 'bool' || type === 'float16' || type === 'uint32' ;
172
+ type === 'float16' || type === 'int32' || type === 'int64' || type === 'uint32' || type === 'uint8' ||
173
+ type === 'bool' ;
173
174
174
175
/**
175
176
* Map string data location to integer value
You can’t perform that action at this time.
0 commit comments