MCPcopy Create free account
hub / github.com/Tencent/TNN / DoubleToString

Function DoubleToString

source/tnn/utils/string_format.cc:23–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21namespace TNN_NS {
22
23std::string DoubleToString(double val) {
24 std::stringstream stream;
25 stream << std::setprecision(3) << std::setiosflags(std::ios::fixed) << val;
26 return stream.str();
27}
28
29std::string DoubleToStringFilter(double val) {
30 if (0 == val) {

Callers 4

DoubleToStringFilterFunction · 0.85
GetProfilingDataInfoMethod · 0.85
GetProfilingDataInfoMethod · 0.85

Calls 1

strMethod · 0.45

Tested by

no test coverage detected