Home
last modified time | relevance | path

Searched refs:toHexFloatString (Results 1 – 1 of 1) sorted by relevance

/packages/modules/NeuralNetworks/tools/test_generator/test_harness/
DTestHarness.cpp520 std::string toHexFloatString(const T& value);
522 std::string toHexFloatString<float>(const float& value) { in toHexFloatString() function
528 std::string toHexFloatString<_Float16>(const _Float16& value) { in toHexFloatString() function
529 return toHexFloatString(static_cast<float>(value)); in toHexFloatString()
552 os << "from_hex([" << join(", ", data, data + length, toHexFloatString<T>) << "])"; in dumpTestBufferToSpecFileHelper()
611 mOs << ", float.fromhex(" << toHexFloatString(operand.scale) << "), " << operand.zeroPoint; in dumpTestOperand()