Unverified Commit a0e7694b authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Don't segfault trying to be informative about empty tensors (#2576)

* Don't segfault trying to be informative about empty tensors

* Review comments
parent dfff804b
......@@ -238,6 +238,10 @@ uint32_t test::matching_mantissa_bits(uint64_t distance)
{
return ::testing::AssertionFailure() << "a.size() != b.size() for all_close_f comparison.";
}
if (a.size() == 0)
{
return ::testing::AssertionSuccess() << "No elements to compare";
}
vector<uint32_t> distances = float_distances(a, b);
// e.g. for float with 24 bit mantissa, 2 bit accuracy, and hard-coded 8 bit exponent_bits
......@@ -338,6 +342,11 @@ uint32_t test::matching_mantissa_bits(uint64_t distance)
{
return ::testing::AssertionFailure() << "a.size() != b.size() for all_close_f comparison.";
}
if (a.size() == 0)
{
return ::testing::AssertionSuccess() << "No elements to compare";
}
vector<uint64_t> distances = float_distances(a, b);
// e.g. for double with 52 bit mantissa, 2 bit accuracy, and hard-coded 11 bit exponent_bits
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment