Tensor Comprehensions
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
lut.h
Go to the documentation of this file.
1 
16 #pragma once
17 
18 namespace tc {
19 
20 static constexpr auto TC_LUT_NAME = "lut";
21 
22 static constexpr auto TC_LUT = R"TC( def lut(float(E, D) LUT, int32(B, L) I) -> (O) { O(i, j) +=! LUT(I(i, k), j) } )TC";
23 
24 } // namespace tc
25