Tensor Comprehensions
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
3fcrelu.h
Go to the documentation of this file.
1 
16 #pragma once
17 
18 namespace tc {
19 
20 constexpr static auto TC_3FCRELU_NAME = "func_3fcrelu";
21 
22 constexpr static auto TC_3FCRELU = R"TC( def func_3fcrelu(float(B,M) I, float(N,M) W1, float(N) B1, float(O,N) W2, float(O) B2, float(P,O) W3, float(P) B3) -> (O1, O2, O3) { 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) O2(b, o) +=! O1(b, n) * W2(o, n) O2(b, o) = O2(b, o) + B2(o) O2(b, o) = fmax(O2(b, o), 0) O3(b, p) +=! O2(b, o) * W3(p, o) O3(b, p) = O3(b, p) + B3(p) O3(b, p) = fmax(O3(b, p), 0) } )TC";
23 
24 } // namespace tc
25