MCPcopy Create free account
hub / github.com/ARM-software/armnn / to_string

Function to_string

src/backends/backendsCommon/WorkloadData.cpp:53–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51//android ndk does not support std::to_string function.
52template <typename T>
53std::string to_string(T value)
54{
55 std::ostringstream os;
56 os << value;
57 return os.str();
58}
59
60//---------------------------------------------------------------
61void ValidatePointer(const void* ptr, std::string const& descName, std::string const& paramName)

Callers 15

ValidateNumInputsFunction · 0.70
ValidateNumOutputsFunction · 0.70
ValidateTensorsFunction · 0.70
ValidateMethod · 0.70
DecodeMethod · 0.50
DecodeMethod · 0.50

Calls 1

strMethod · 0.45

Tested by 11

ReserveMethod · 0.40
VerifySplitFunction · 0.40
VerifyInputTensorDataFunction · 0.40
PackFixtureMethod · 0.40
DummyCustomFixtureMethod · 0.40
UnpackFixtureMethod · 0.40
StridedSliceFixtureMethod · 0.40