mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
This introduces a new header file `zamalang/Support/Constants.h` for constants, currently only populated with a constant for the default pattern rewriting benefit of 1.
11 lines
215 B
C++
11 lines
215 B
C++
#ifndef ZAMALANG_SUPPORT_CONSTANTS_H_
|
|
#define ZAMALANG_SUPPORT_CONSTANTS_H_
|
|
|
|
namespace mlir {
|
|
namespace zamalang {
|
|
constexpr unsigned DEFAULT_PATTERN_BENEFIT = 1;
|
|
} // namespace zamalang
|
|
} // namespace mlir
|
|
|
|
#endif
|