| 10 | namespace data { |
| 11 | namespace op { |
| 12 | LoadNumpy::LoadNumpy( |
| 13 | const std::string& ikey, |
| 14 | const std::string& prefix, |
| 15 | bool from_memory, |
| 16 | const std::string& okey) |
| 17 | : KeyTransformOp(ikey, okey), prefix_(prefix), from_memory_(from_memory) {} |
| 18 | |
| 19 | std::shared_ptr<Array> LoadNumpy::apply_key( |
| 20 | const std::shared_ptr<const Array>& src) const { |
nothing calls this directly
no outgoing calls
no test coverage detected