2016-02-05 19:18:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkColor.h"
|
|
|
|
#include "include/core/SkPixmap.h"
|
|
|
|
#include "include/private/SkHalf.h"
|
|
|
|
#include "include/private/SkTo.h"
|
|
|
|
#include "include/utils/SkRandom.h"
|
|
|
|
#include "src/core/SkAutoPixmapStorage.h"
|
|
|
|
#include "src/core/SkOpts.h"
|
|
|
|
#include "tests/Test.h"
|
2016-02-05 19:18:39 +00:00
|
|
|
|
2016-11-09 20:00:49 +00:00
|
|
|
#include <cmath>
|
|
|
|
|
2016-08-22 20:20:18 +00:00
|
|
|
static bool is_denorm(uint16_t h) {
|
|
|
|
return (h & 0x7fff) < 0x0400;
|
2016-02-11 20:48:23 +00:00
|
|
|
}
|
|
|
|
|
2016-08-22 20:20:18 +00:00
|
|
|
static bool is_finite(uint16_t h) {
|
|
|
|
return (h & 0x7c00) != 0x7c00;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkHalfToFloat_finite_ftz, r) {
|
2016-07-15 14:00:11 +00:00
|
|
|
for (uint32_t h = 0; h <= 0xffff; h++) {
|
2016-08-22 20:20:18 +00:00
|
|
|
if (!is_finite(h)) {
|
|
|
|
// _finite_ftz() only works for values that can be represented as a finite half float.
|
|
|
|
continue;
|
2016-02-11 14:30:03 +00:00
|
|
|
}
|
2016-08-22 20:20:18 +00:00
|
|
|
|
2016-08-23 15:58:12 +00:00
|
|
|
// _finite_ftz() may flush denorms to zero. 0.0f will compare == with both +0.0f and -0.0f.
|
|
|
|
float expected = SkHalfToFloat(h),
|
|
|
|
alternate = is_denorm(h) ? 0.0f : expected;
|
2016-08-22 20:20:18 +00:00
|
|
|
|
2016-08-23 15:58:12 +00:00
|
|
|
float actual = SkHalfToFloat_finite_ftz(h)[0];
|
|
|
|
|
|
|
|
REPORTER_ASSERT(r, actual == expected || actual == alternate);
|
2016-02-11 14:30:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-22 20:20:18 +00:00
|
|
|
DEF_TEST(SkFloatToHalf_finite_ftz, r) {
|
2016-02-11 14:30:03 +00:00
|
|
|
#if 0
|
2016-07-15 14:00:11 +00:00
|
|
|
for (uint64_t bits = 0; bits <= 0xffffffff; bits++) {
|
2016-02-11 14:30:03 +00:00
|
|
|
#else
|
|
|
|
SkRandom rand;
|
|
|
|
for (int i = 0; i < 1000000; i++) {
|
|
|
|
uint32_t bits = rand.nextU();
|
|
|
|
#endif
|
|
|
|
float f;
|
|
|
|
memcpy(&f, &bits, 4);
|
2016-08-22 20:20:18 +00:00
|
|
|
|
|
|
|
uint16_t expected = SkFloatToHalf(f);
|
|
|
|
if (!is_finite(expected)) {
|
|
|
|
// _finite_ftz() only works for values that can be represented as a finite half float.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-08-23 15:58:12 +00:00
|
|
|
uint16_t alternate = expected;
|
2016-08-22 20:20:18 +00:00
|
|
|
if (is_denorm(expected)) {
|
2016-08-23 15:58:12 +00:00
|
|
|
// _finite_ftz() may flush denorms to zero, and happens to keep the sign bit.
|
2016-11-09 20:00:49 +00:00
|
|
|
alternate = std::signbit(f) ? 0x8000 : 0x0000;
|
2016-02-11 14:30:03 +00:00
|
|
|
}
|
2016-08-22 20:20:18 +00:00
|
|
|
|
|
|
|
uint16_t actual = SkFloatToHalf_finite_ftz(Sk4f{f})[0];
|
2016-08-23 15:58:12 +00:00
|
|
|
// _finite_ftz() may truncate instead of rounding, so it may be one too small.
|
|
|
|
REPORTER_ASSERT(r, actual == expected || actual == expected - 1 ||
|
|
|
|
actual == alternate || actual == alternate - 1);
|
2016-02-11 14:30:03 +00:00
|
|
|
}
|
|
|
|
}
|