(
shape: number[], dtype: DataType, values?: BackendValues)
| 799 | } |
| 800 | |
| 801 | private makeOutput<T extends Tensor>( |
| 802 | shape: number[], dtype: DataType, values?: BackendValues): T { |
| 803 | return engine().makeTensorFromTensorInfo( |
| 804 | this.makeTensorInfo(shape, dtype, values), this) as T; |
| 805 | } |
| 806 | |
| 807 | unpackTensor(input: TensorInfo): TensorInfo { |
| 808 | const program = new UnpackProgram(input.shape); |
no test coverage detected