Searched refs:prefetch_sz (Results 1 – 7 of 7) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/api/python/bindings/dataset/engine/cache/ |
D | bindings.cc | 28 … std::optional<int32_t> num_connections, std::optional<int32_t> prefetch_sz) { in __anon19b8a73b0102() argument 35 if (prefetch_sz) builder.SetPrefetchSize(prefetch_sz.value()); in __anon19b8a73b0102()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/ir/cache/ |
D | dataset_cache.cc | 43 std::optional<int32_t> prefetch_sz = std::nullopt; in from_json() local 50 …if (json_cache.find("prefetch_size") != json_cache.end()) prefetch_sz = json_cache["prefetch_size"… in from_json() 51 …::make_shared<DatasetCacheImpl>(id, mem_sz, spill, hostname_c, port, num_connections, prefetch_sz); in from_json()
|
D | dataset_cache_impl.h | 48 std::optional<int32_t> prefetch_sz) in DatasetCacheImpl() argument 54 prefetch_sz_(std::move(prefetch_sz)) { in DatasetCacheImpl()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/ |
D | cache_client.h | 115 Builder &SetPrefetchSize(int32_t prefetch_sz) { in SetPrefetchSize() argument 116 prefetch_size_ = prefetch_sz; in SetPrefetchSize()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/perf/ |
D | cache_perf_run.cc | 84 int32_t prefetch_sz = std::stoi(optarg); in ProcessArgsHelper() local 85 cache_builder_.SetPrefetchSize(prefetch_sz); in ProcessArgsHelper()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/include/dataset/ |
D | datasets.h | 2747 … std::optional<int32_t> prefetch_sz = std::nullopt); 2763 … std::optional<int32_t> prefetch_sz = std::nullopt) { 2768 …return CreateDatasetCacheCharIF(id, mem_sz, spill, hostname_c, port, num_connections, prefetch_sz);
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/api/ |
D | datasets.cc | 844 std::optional<int32_t> prefetch_sz) { in CreateDatasetCacheCharIF() argument 845 …td::make_shared<DatasetCacheImpl>(id, mem_sz, spill, hostname, port, num_connections, prefetch_sz); in CreateDatasetCacheCharIF()
|