Tensor Comprehensions
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
fcrelu.h
Go to the documentation of this file.
1 
16 #pragma once
17 
18 namespace tc {
19 
20 constexpr static auto TC_FCRELU_NAME = "func_fcrelu";
21 
22 constexpr static auto TC_FCRELU = R"TC( def func_fcrelu(float(B,M) I, float(N,M) W1, float(N) B1) -> (O1) { O1(b, n) +=! I(b, m) * W1(n, m) O1(b, n) = O1(b, n) + B1(n) O1(b, n) = fmax(O1(b, n), 0) } )TC";
23 
24 } // namespace tc
25