Tensor Comprehensions
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
constants.h
Go to the documentation of this file.
1 
16 #pragma once
17 
18 namespace tc {
19 namespace polyhedral {
20 
21 //
22 // General constants to avoid hardcoding
23 //
24 constexpr auto kStatementLabel = "S_";
25 constexpr auto kPartialScheduleLabel = "L_";
26 
27 constexpr auto kAstNodeIdPrefix = "__node_";
28 
29 constexpr auto kReadIdName = "read";
30 constexpr auto kWriteIdName = "write";
31 constexpr auto kSyncIdPrefix = "_sync_";
32 
33 } // namespace polyhedral
34 } // namespace tc