mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-02-09 11:16:45 +08:00
Cleaning.
This commit is contained in:
parent
6ceb29a7e4
commit
2c8e738950
@ -60,12 +60,35 @@ from_chars_result parse_infnan(const char *first, const char *last, T &value) n
|
|||||||
return answer;
|
return answer;
|
||||||
}
|
}
|
||||||
|
|
||||||
fastfloat_really_inline bool rounds_nearest() {
|
fastfloat_really_inline bool rounds_to_nearest() noexcept {
|
||||||
// This function is meant to be equivalent to :
|
// This function is meant to be equivalent to :
|
||||||
// prior: #include <cfenv>
|
// prior: #include <cfenv>
|
||||||
// return fegetround() == FE_TONEAREST;
|
// return fegetround() == FE_TONEAREST;
|
||||||
|
// However, it is expected to be much faster than the fegetround()
|
||||||
|
// function call.
|
||||||
|
//
|
||||||
// volatile prevents the compiler from computing the function at compile-time
|
// volatile prevents the compiler from computing the function at compile-time
|
||||||
static volatile float fmin = std::numeric_limits<float>::min();
|
static volatile float fmin = std::numeric_limits<float>::min();
|
||||||
|
//
|
||||||
|
// Explanation:
|
||||||
|
// Only when fegetround() == FE_TONEAREST do we have that
|
||||||
|
// fmin + 1.0f == 1.0f - fmin.
|
||||||
|
//
|
||||||
|
// FE_UPWARD:
|
||||||
|
// fmin + 1.0f = 0x1.00001 (1.00001)
|
||||||
|
// 1.0f - fmin = 0x1 (1)
|
||||||
|
//
|
||||||
|
// FE_DOWNWARD or FE_TOWARDZERO:
|
||||||
|
// fmin + 1.0f = 0x1 (1)
|
||||||
|
// 1.0f - fmin = 0x0.999999 (0.999999)
|
||||||
|
//
|
||||||
|
// fmin + 1.0f = 0x1 (1)
|
||||||
|
// 1.0f - fmin = 0x0.999999 (0.999999)
|
||||||
|
//
|
||||||
|
// FE_TONEAREST:
|
||||||
|
// fmin + 1.0f = 0x1 (1)
|
||||||
|
// 1.0f - fmin = 0x1 (1)
|
||||||
|
//
|
||||||
return (fmin + 1.0f == 1.0f - fmin);
|
return (fmin + 1.0f == 1.0f - fmin);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,7 +119,9 @@ from_chars_result from_chars_advanced(const char *first, const char *last,
|
|||||||
}
|
}
|
||||||
answer.ec = std::errc(); // be optimistic
|
answer.ec = std::errc(); // be optimistic
|
||||||
answer.ptr = pns.lastmatch;
|
answer.ptr = pns.lastmatch;
|
||||||
if(detail::rounds_nearest()) {
|
// Unfortunately, the conventional Clinger's fast path is only possible
|
||||||
|
// when the system rounds to the nearest float.
|
||||||
|
if(detail::rounds_to_nearest()) {
|
||||||
// We have that fegetround() == FE_TONEAREST.
|
// We have that fegetround() == FE_TONEAREST.
|
||||||
// Next is Clinger's fast path.
|
// Next is Clinger's fast path.
|
||||||
if (binary_format<T>::min_exponent_fast_path() <= pns.exponent && pns.exponent <= binary_format<T>::max_exponent_fast_path() && pns.mantissa <=binary_format<T>::max_mantissa_fast_path() && !pns.too_many_digits) {
|
if (binary_format<T>::min_exponent_fast_path() <= pns.exponent && pns.exponent <= binary_format<T>::max_exponent_fast_path() && pns.mantissa <=binary_format<T>::max_mantissa_fast_path() && !pns.too_many_digits) {
|
||||||
|
|||||||
@ -10,6 +10,7 @@
|
|||||||
#include <limits>
|
#include <limits>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <system_error>
|
#include <system_error>
|
||||||
|
#include <cfenv>
|
||||||
|
|
||||||
#ifndef SUPPLEMENTAL_TEST_DATA_DIR
|
#ifndef SUPPLEMENTAL_TEST_DATA_DIR
|
||||||
#define SUPPLEMENTAL_TEST_DATA_DIR "data/"
|
#define SUPPLEMENTAL_TEST_DATA_DIR "data/"
|
||||||
@ -42,6 +43,11 @@
|
|||||||
#define FASTFLOAT_ODDPLATFORM 1
|
#define FASTFLOAT_ODDPLATFORM 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#define iHexAndDec(v) std::hex << "0x" << (v) << " (" << std::dec << (v) << ")"
|
||||||
|
#define fHexAndDec(v) std::hexfloat << (v) << " (" << std::defaultfloat << (v) << ")"
|
||||||
|
|
||||||
|
|
||||||
// C++ 17 because it is otherwise annoying to browse all files in a directory.
|
// C++ 17 because it is otherwise annoying to browse all files in a directory.
|
||||||
// We also only run these tests on little endian systems.
|
// We also only run these tests on little endian systems.
|
||||||
#if (FASTFLOAT_CPLUSPLUS >= 201703L) && (FASTFLOAT_IS_BIG_ENDIAN == 0) && !defined(FASTFLOAT_ODDPLATFORM)
|
#if (FASTFLOAT_CPLUSPLUS >= 201703L) && (FASTFLOAT_IS_BIG_ENDIAN == 0) && !defined(FASTFLOAT_ODDPLATFORM)
|
||||||
@ -50,59 +56,111 @@
|
|||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
#include <charconv>
|
#include <charconv>
|
||||||
|
|
||||||
|
TEST_CASE("rounds_to_nearest") {
|
||||||
|
//
|
||||||
|
// If this function fails, we may be left in a non-standard rounding state.
|
||||||
|
//
|
||||||
|
static volatile float fmin = std::numeric_limits<float>::min();
|
||||||
|
fesetround(FE_UPWARD);
|
||||||
|
std::cout << "FE_UPWARD: fmin + 1.0f = " << iHexAndDec(fmin + 1.0f) << " 1.0f - fmin = " << iHexAndDec(1.0f - fmin) << std::endl;
|
||||||
|
CHECK(fegetround() == FE_UPWARD);
|
||||||
|
CHECK(fast_float::detail::rounds_to_nearest() == false);
|
||||||
|
|
||||||
|
fesetround(FE_DOWNWARD);
|
||||||
|
std::cout << "FE_DOWNWARD: fmin + 1.0f = " << iHexAndDec(fmin + 1.0f) << " 1.0f - fmin = " << iHexAndDec(1.0f - fmin) << std::endl;
|
||||||
|
CHECK(fegetround() == FE_DOWNWARD);
|
||||||
|
CHECK(fast_float::detail::rounds_to_nearest() == false);
|
||||||
|
|
||||||
|
fesetround(FE_TOWARDZERO);
|
||||||
|
std::cout << "FE_TOWARDZERO: fmin + 1.0f = " << iHexAndDec(fmin + 1.0f) << " 1.0f - fmin = " << iHexAndDec(1.0f - fmin) << std::endl;
|
||||||
|
CHECK(fegetround() == FE_TOWARDZERO);
|
||||||
|
CHECK(fast_float::detail::rounds_to_nearest() == false);
|
||||||
|
|
||||||
|
fesetround(FE_TONEAREST);
|
||||||
|
std::cout << "FE_TONEAREST: fmin + 1.0f = " << iHexAndDec(fmin + 1.0f) << " 1.0f - fmin = " << iHexAndDec(1.0f - fmin) << std::endl;
|
||||||
|
CHECK(fegetround() == FE_TONEAREST);
|
||||||
|
CHECK(fast_float::detail::rounds_to_nearest() == true);
|
||||||
|
}
|
||||||
|
|
||||||
|
const char * round_name(int d) {
|
||||||
|
switch(d) {
|
||||||
|
case FE_UPWARD:
|
||||||
|
return "FE_UPWARD";
|
||||||
|
case FE_DOWNWARD:
|
||||||
|
return "FE_DOWNWARD";
|
||||||
|
case FE_TOWARDZERO:
|
||||||
|
return "FE_TOWARDZERO";
|
||||||
|
case FE_TONEAREST:
|
||||||
|
return "FE_TONEAREST";
|
||||||
|
default:
|
||||||
|
return "UNKNOWN";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// return true on success
|
// return true on success
|
||||||
bool check_file(std::string file_name) {
|
bool check_file(std::string file_name) {
|
||||||
std::cout << "Checking " << file_name << std::endl;
|
std::cout << "Checking " << file_name << std::endl;
|
||||||
size_t number{0};
|
// We check all rounding directions, for each file.
|
||||||
std::fstream newfile(file_name, std::ios::in);
|
std::vector<int> directions = {FE_UPWARD, FE_DOWNWARD, FE_TOWARDZERO, FE_TONEAREST};
|
||||||
if (newfile.is_open()) {
|
for (int d : directions) {
|
||||||
std::string str;
|
std::cout << "fesetround to " << round_name(d) << std::endl;
|
||||||
while (std::getline(newfile, str)) {
|
fesetround(d);
|
||||||
if (str.size() > 0) {
|
size_t number{0};
|
||||||
// Read 32-bit hex
|
std::fstream newfile(file_name, std::ios::in);
|
||||||
uint32_t float32;
|
if (newfile.is_open()) {
|
||||||
auto r32 = std::from_chars(str.data() + 5, str.data() + str.size(),
|
std::string str;
|
||||||
|
while (std::getline(newfile, str)) {
|
||||||
|
if (str.size() > 0) {
|
||||||
|
// Read 32-bit hex
|
||||||
|
uint32_t float32;
|
||||||
|
auto r32 = std::from_chars(str.data() + 5, str.data() + str.size(),
|
||||||
float32, 16);
|
float32, 16);
|
||||||
if(r32.ec != std::errc()) { std::cerr << "32-bit parsing failure\n"; return false; }
|
if(r32.ec != std::errc()) { std::cerr << "32-bit parsing failure\n"; return false; }
|
||||||
// Read 64-bit hex
|
// Read 64-bit hex
|
||||||
uint64_t float64;
|
uint64_t float64;
|
||||||
auto r64 = std::from_chars(str.data() + 14, str.data() + str.size(),
|
auto r64 = std::from_chars(str.data() + 14, str.data() + str.size(),
|
||||||
float64, 16);
|
float64, 16);
|
||||||
if(r64.ec != std::errc()) { std::cerr << "64-bit parsing failure\n"; return false; }
|
if(r64.ec != std::errc()) { std::cerr << "64-bit parsing failure\n"; return false; }
|
||||||
// The string to parse:
|
// The string to parse:
|
||||||
const char *number_string = str.data() + 31;
|
const char *number_string = str.data() + 31;
|
||||||
const char *end_of_string = str.data() + str.size();
|
const char *end_of_string = str.data() + str.size();
|
||||||
// Parse as 32-bit float
|
// Parse as 32-bit float
|
||||||
float parsed_32;
|
float parsed_32;
|
||||||
auto fast_float_r32 = fast_float::from_chars(number_string, end_of_string, parsed_32);
|
auto fast_float_r32 = fast_float::from_chars(number_string, end_of_string, parsed_32);
|
||||||
if(fast_float_r32.ec != std::errc()) { std::cerr << "parsing failure\n"; return false; }
|
if(fast_float_r32.ec != std::errc()) { std::cerr << "parsing failure\n"; return false; }
|
||||||
// Parse as 64-bit float
|
// Parse as 64-bit float
|
||||||
double parsed_64;
|
double parsed_64;
|
||||||
auto fast_float_r64 = fast_float::from_chars(number_string, end_of_string, parsed_64);
|
auto fast_float_r64 = fast_float::from_chars(number_string, end_of_string, parsed_64);
|
||||||
if(fast_float_r64.ec != std::errc()) { std::cerr << "parsing failure\n"; return false; }
|
if(fast_float_r64.ec != std::errc()) { std::cerr << "parsing failure\n"; return false; }
|
||||||
// Convert the floats to unsigned ints.
|
// Convert the floats to unsigned ints.
|
||||||
uint32_t float32_parsed;
|
uint32_t float32_parsed;
|
||||||
uint64_t float64_parsed;
|
uint64_t float64_parsed;
|
||||||
::memcpy(&float32_parsed, &parsed_32, sizeof(parsed_32));
|
::memcpy(&float32_parsed, &parsed_32, sizeof(parsed_32));
|
||||||
::memcpy(&float64_parsed, &parsed_64, sizeof(parsed_64));
|
::memcpy(&float64_parsed, &parsed_64, sizeof(parsed_64));
|
||||||
// Compare with expected results
|
// Compare with expected results
|
||||||
if (float32_parsed != float32) {
|
if (float32_parsed != float32) {
|
||||||
std::cout << "bad 32 " << str << std::endl;
|
std::cout << "bad 32 " << str << std::endl;
|
||||||
return false;
|
fesetround(FE_TONEAREST);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (float64_parsed != float64) {
|
||||||
|
std::cout << "bad 64 " << str << std::endl;
|
||||||
|
fesetround(FE_TONEAREST);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
number++;
|
||||||
}
|
}
|
||||||
if (float64_parsed != float64) {
|
|
||||||
std::cout << "bad 64 " << str << std::endl;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
number++;
|
|
||||||
}
|
}
|
||||||
|
std::cout << "checked " << std::defaultfloat << number << " values" << std::endl;
|
||||||
|
newfile.close(); // close the file object
|
||||||
|
} else {
|
||||||
|
std::cout << "Could not read " << file_name << std::endl;
|
||||||
|
fesetround(FE_TONEAREST);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
std::cout << "checked " << std::defaultfloat << number << " values" << std::endl;
|
|
||||||
newfile.close(); // close the file object
|
|
||||||
} else {
|
|
||||||
std::cout << "Could not read " << file_name << std::endl;
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
fesetround(FE_TONEAREST);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -125,9 +183,6 @@ TEST_CASE("leading_zeroes") {
|
|||||||
CHECK(fast_float::leading_zeroes(bit << 63) == 0);
|
CHECK(fast_float::leading_zeroes(bit << 63) == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define iHexAndDec(v) std::hex << "0x" << (v) << " (" << std::dec << (v) << ")"
|
|
||||||
#define fHexAndDec(v) std::hexfloat << (v) << " (" << std::defaultfloat << (v) << ")"
|
|
||||||
|
|
||||||
void test_full_multiplication(uint64_t lhs, uint64_t rhs, uint64_t expected_lo, uint64_t expected_hi) {
|
void test_full_multiplication(uint64_t lhs, uint64_t rhs, uint64_t expected_lo, uint64_t expected_hi) {
|
||||||
fast_float::value128 v;
|
fast_float::value128 v;
|
||||||
v = fast_float::full_multiplication(lhs, rhs);
|
v = fast_float::full_multiplication(lhs, rhs);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user