MCPcopy Create free account
hub / github.com/LBANN/lbann / save

Function save

src/utils/serialization.cpp:46–49  ·  view source on GitHub ↗

@brief Save this half-precision value in Binary */

Source from the content-addressed store, hash-verified

44
45/** @brief Save this half-precision value in Binary */
46void save(BinaryOutputArchive& archive, __half const& value)
47{
48 archive.saveBinary(std::addressof(value), sizeof(value));
49}
50
51/** @brief Load this half-precision value from Binary */
52void load(BinaryInputArchive& archive, __half& value)

Callers 5

mainFunction · 0.50
mainFunction · 0.50
extract_samplesFunction · 0.50
mainFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected