Tensor Comprehensions
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
batch_matmul.h
Go to the documentation of this file.
1 
16 #pragma once
17 
18 namespace tc {
19 
20 static constexpr auto TC_BATCH_MATMUL_NAME = "batch_matmul";
21 
22 static constexpr auto TC_BATCH_MATMUL = R"TC( def batch_matmul(float(B, N, M) X, float(B, M, K) Y) -> (Z) { Z(b, n, k) +=! X(b, n, mm) * Y(b, mm, k) } )TC";
23 
24 } // namespace tc
25