Cortenn
serialize.hpp
Go to the documentation of this file.
1 
9 #include "llo/data.hpp"
10 
11 #ifndef LLO_SERIALIZE_HPP
12 #define LLO_SERIALIZE_HPP
13 
14 namespace llo
15 {
16 
18 std::string serialize (const char* in, size_t nelems, size_t typecode);
19 
21 ade::TensptrT deserialize (const char* pb, ade::Shape shape,
22  size_t typecode, std::string label);
23 
24 }
25 
26 #endif // LLO_SERIALIZE_HPP
ade::TensptrT deserialize(const char *pb, ade::Shape shape, size_t typecode, std::string label)
Unmarshal cortenn::Source as Variable containing context of source.
std::string serialize(const char *in, size_t nelems, size_t typecode)
Marshal data to cortenn::Source.
Definition: data.hpp:20