Home
last modified time | relevance | path

Searched refs:op_queue_size (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/
Dfilter_op.cc32 …:FilterOp(const std::vector<std::string> &in_col_names, int32_t num_workers, int32_t op_queue_size, in FilterOp() argument
34 …: ParallelOp(num_workers, op_queue_size), predicate_func_(std::move(predicate_func)), in_columns_(… in FilterOp()
35 worker_queues_.Init(num_workers, op_queue_size); in FilterOp()
Dbatch_op.cc52 BatchOp::BatchOp(int32_t batch_size, bool drop, bool pad, int32_t op_queue_size, int32_t num_worker… in BatchOp() argument
55 : ParallelOp(num_workers, op_queue_size), in BatchOp()
67 int32_t queue_size = std::max(1, op_queue_size / start_batch_size_); in BatchOp()
77 BatchOp::BatchOp(int32_t batch_size, bool drop, bool pad, int32_t op_queue_size, int32_t num_worker… in BatchOp() argument
79 : ParallelOp(num_workers, op_queue_size), in BatchOp()
87 int32_t queue_size = std::max(1, op_queue_size / start_batch_size_); in BatchOp()
Dbatch_op.h153 BatchOp(int32_t batch_size, bool drop, bool pad, int32_t op_queue_size, int32_t num_workers,
157 BatchOp(int32_t batch_size, bool drop, bool pad, int32_t op_queue_size, int32_t num_workers,
Dfilter_op.h43 FilterOp(const std::vector<std::string> &in_col_names, int32_t num_workers, int32_t op_queue_size,