aclrtFloatOverflowMode

typedef enum aclrtFloatOverflowMode {
    ACL_RT_OVERFLOW_MODE_SATURATION = 0, // Overflow detection saturation mode. If this mode is used, the computation precision may be inaccurate. This mode is only compatible with earlier versions and will not be evolved in the future.
    ACL_RT_OVERFLOW_MODE_INFNAN,         // Overflow detection Inf/NaN mode (default value).
    ACL_RT_OVERFLOW_MODE_UNDEF,
} aclrtFloatOverflowMode;