Tensor Comprehensions
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
2lut.h
Go to the documentation of this file.
1 
16 #pragma once
17 
18 namespace tc {
19 
20 constexpr static auto TC_2LUT_NAME = "func_2lut";
21 
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";
23 
24 } // namespace tc
25