(contents: Uint8Array)
| 381 | } |
| 382 | |
| 383 | decodeGif(contents: Uint8Array): Tensor4D { |
| 384 | const inputArgs = [scalar(contents, 'string')]; |
| 385 | return this.executeSingleOutput('DecodeGif', [], inputArgs) as |
| 386 | Tensor<Rank.R4>; |
| 387 | } |
| 388 | |
| 389 | executeEncodeImageOp( |
| 390 | name: string, opAttrs: TFEOpAttr[], imageData: Uint8Array, |
no test coverage detected