|
Tensor Comprehensions
|
Go to the documentation of this file.
20 constexpr
static auto TC_2LUT_NAME =
"func_2lut";
22 constexpr
static auto TC_2LUT = R
"TC(
def func_2lut(float(E1, D) LUT1, int32(B, L1) I1, float(E2, D) LUT2, int32(B, L2) I2) -> (O1, O2) {
O1(i, j) +=! LUT1(I1(i, k), j)
O2(i, j) +=! LUT2(I2(i, k), j)
}
)TC";