(i: number)
| 41 | return; |
| 42 | } |
| 43 | const getInCoord = (i: number) => { |
| 44 | if (axis.indexOf(i) !== -1 && xShape[i] !== 1) { |
| 45 | return `${xShape[i]} - coords[${i}] - 1`; |
| 46 | } |
| 47 | return `coords[${i}]`; |
| 48 | }; |
| 49 | const inCoords = xShape.map((_, i) => getInCoord(i)).join(','); |
| 50 | const type = getCoordsDataType(rank); |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected