/* * Copyright (c) 2018, Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include namespace OCLRT { template struct StorageType; template <> struct StorageType<8> { using Type = uint8_t; }; template <> struct StorageType<16> { using Type = uint16_t; }; template <> struct StorageType<32> { using Type = uint32_t; }; template <> struct StorageType<64> { using Type = uint64_t; }; template struct StorageType { using Type = typename StorageType::Type; }; template using StorageTypeT = typename StorageType::Type; template struct UnsignedFixedPointValue { UnsignedFixedPointValue(float v) { fromFloatingPoint(v); } StorageTypeT &getRawAccess() { return storage; } static constexpr float getMaxRepresentableFloat() { return getMaxRepresentableFloatingPointValue(); } float asFloat() { return asFloatPointType(); } protected: template static constexpr FloatingType getMaxRepresentableFloatingPointValue() { return static_cast( static_cast((1U << IntegerBits) - 1) + (static_cast((1U << FractionalBits) - 1) / (1U << FractionalBits))); } template void fromFloatingPoint(FloatingType val) { auto maxFloatVal = getMaxRepresentableFloatingPointValue(); // clamp to [0, maxFloatVal] val = (val < FloatingType{0}) ? FloatingType{0} : val; val = (val > maxFloatVal) ? maxFloatVal : val; // scale to fixed point representation this->storage = static_cast>(val * (1U << FractionalBits)); } template FloatingType asFloatPointType() { return static_cast(storage) / (1U << FractionalBits); } StorageTypeT storage = 0; }; using FixedU4D8 = UnsignedFixedPointValue<4, 8>; } // namespace OCLRT