(x, a)
| 1103 | * @returns {Promise<Tensor>} the output tensor. |
| 1104 | */ |
| 1105 | export async function rfft(x, a) { |
| 1106 | const op = await TensorOpRegistry.rfft; |
| 1107 | return await op({ x, a }); |
| 1108 | } |
| 1109 | |
| 1110 | /** |
| 1111 | * Returns the k largest elements of the given input tensor. |