Home
last modified time | relevance | path

Searched refs:CreateSamplerTensor (Results 1 – 10 of 10) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/source/sampler/
Ddistributed_sampler.cc110 RETURN_IF_NOT_OK(CreateSamplerTensor(&sample_ids, 1)); in GetNextSample()
121 RETURN_IF_NOT_OK(CreateSamplerTensor(&sample_ids, samples_per_tensor_)); in GetNextSample()
Dmind_record_sampler.cc35 RETURN_IF_NOT_OK(CreateSamplerTensor(&sampleIdsTensor, last_id - next_id_)); in GetNextSample()
Dsampler.h128 Status CreateSamplerTensor(std::shared_ptr<Tensor> *sample_ids, int64_t num_elements);
Dsubset_sampler.cc77 RETURN_IF_NOT_OK(CreateSamplerTensor(&outputIds, last_id - sample_id_)); in GetNextSample()
Dsequential_sampler.cc45 RETURN_IF_NOT_OK(CreateSamplerTensor(&sampleIds, num_elements)); in GetNextSample()
Drandom_sampler.cc46 RETURN_IF_NOT_OK(CreateSamplerTensor(&sampleIds, last_id - next_id_)); in GetNextSample()
Dpk_sampler.cc85 RETURN_IF_NOT_OK(CreateSamplerTensor(&sample_ids, last_id - next_id_)); in GetNextSample()
Dweighted_random_sampler.cc146 RETURN_IF_NOT_OK(CreateSamplerTensor(&outputIds, last_id - sample_id_)); in GetNextSample()
Dsampler.cc72 Status SamplerRT::CreateSamplerTensor(std::shared_ptr<Tensor> *sample_ids, int64_t num_elements) { in CreateSamplerTensor() function in mindspore::dataset::SamplerRT
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/
Dcache_lookup_op.cc81 RETURN_IF_NOT_OK(CreateSamplerTensor(&sample_ts, cache_miss.size())); in GetNextSample()