| 2304 | } |
| 2305 | |
| 2306 | py::dict ReaderMetaToDict(const ReaderMeta &meta) { |
| 2307 | py::dict d; |
| 2308 | d["epoch_size"] = meta.epoch_size; |
| 2309 | d["epoch_size_padded"] = meta.epoch_size_padded; |
| 2310 | d["number_of_shards"] = meta.number_of_shards; |
| 2311 | d["shard_id"] = meta.shard_id; |
| 2312 | d["pad_last_batch"] = meta.pad_last_batch; |
| 2313 | d["stick_to_shard"] = meta.stick_to_shard; |
| 2314 | return d; |
| 2315 | } |
| 2316 | |
| 2317 | py::dict ExecutorMetaToDict(const ExecutorMetaMap &meta) { |
| 2318 | py::dict d; |
no outgoing calls
no test coverage detected