* @desc Set output dimensions of the kernel function * @param {Array|Object} output - The output array to set the kernel output size to * @return {this}
(output)
| 461 | * @return {this} |
| 462 | */ |
| 463 | setOutput(output) { |
| 464 | this.output = this.toKernelOutput(output); |
| 465 | return this; |
| 466 | } |
| 467 | |
| 468 | /** |
| 469 | * @desc Toggle debug mode |
no test coverage detected