(i: number)
| 762 | ? 'a matrix/tensor value' |
| 763 | : `${n} component${n === 1 ? '' : 's'} — a complex value or a ` + |
| 764 | `nested tuple/list`; |
| 765 | throw new Error( |
| 766 | `${ctor}: a tuple/list element that is itself vector-valued ` + |
| 767 | `(${shape}) has no GPU ` + |
| 768 | `lowering; a ${ctor} constructor takes scalar components. Fail closed.` |
| 769 | ); |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | /** |
| 774 | * A NaN matching the SHAPE of `val`: scalar NaN for a scalar value, a |
no test coverage detected