Home
last modified time | relevance | path

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/
Dbindings.cc28 … 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/
Ddataset_cache.cc43 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()
Ddataset_cache_impl.h48 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/
Dcache_client.h115 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/
Dcache_perf_run.cc84 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/
Ddatasets.h2747 … 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/
Ddatasets.cc844 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()