mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
fix: display compilation error in benchmark
the checking of llvm expected was not correct
This commit is contained in:
@@ -16,9 +16,10 @@ namespace mlir {
|
||||
namespace concretelang {
|
||||
|
||||
namespace optimizer {
|
||||
constexpr double DEFAULT_P_ERROR = 1.0 / 100000.0;
|
||||
constexpr double UNSPECIFIED_P_ERROR = NAN; // will use the default p error
|
||||
constexpr double NO_GLOBAL_P_ERROR = NAN; // will fallback on p error
|
||||
constexpr double DEFAULT_GLOBAL_P_ERROR = 1.0 / 100000.0;
|
||||
constexpr double UNSPECIFIED_P_ERROR = NAN; // will use DEFAULT_GLOBAL_P_ERROR
|
||||
constexpr double UNSPECIFIED_GLOBAL_P_ERROR =
|
||||
NAN; // will use DEFAULT_GLOBAL_P_ERROR
|
||||
constexpr uint DEFAULT_SECURITY = 128;
|
||||
constexpr uint DEFAULT_FALLBACK_LOG_NORM_WOPPBS = 8;
|
||||
constexpr bool DEFAULT_DISPLAY = false;
|
||||
@@ -42,7 +43,7 @@ struct Config {
|
||||
|
||||
constexpr Config DEFAULT_CONFIG = {
|
||||
UNSPECIFIED_P_ERROR,
|
||||
NO_GLOBAL_P_ERROR,
|
||||
UNSPECIFIED_GLOBAL_P_ERROR,
|
||||
DEFAULT_DISPLAY,
|
||||
DEFAULT_STRATEGY_V0,
|
||||
DEFAULT_SECURITY,
|
||||
|
||||
Reference in New Issue
Block a user