OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:max_batch_size
(Results
1 - 5
of
5
) sorted by null
/external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_winsys.h
26
size_t
max_batch_size
;
member in struct:i915_drm_winsys
/external/tensorflow/tensorflow/core/kernels/batching_util/
basic_batch_scheduler.h
149
int
max_batch_size
= 1000;
member in struct:tensorflow::serving::BasicBatchScheduler::Options
154
// even if the batch's size is below '
max_batch_size
'.
229
shared_scheduler_queue_options.
max_batch_size
= options.
max_batch_size
;
shared_batch_scheduler.h
138
int
max_batch_size
= 1000;
member in struct:tensorflow::serving::SharedBatchScheduler::QueueOptions
143
// even if the batch's size is below '
max_batch_size
'.
252
size_t max_task_size() const { return options_.
max_batch_size
; }
396
if (options.
max_batch_size
<= 0) {
397
return errors::InvalidArgument("
max_batch_size
must be positive; was ",
398
options.
max_batch_size
);
528
if ((*task)->size() > options_.
max_batch_size
) {
531
options_.
max_batch_size
);
540
if (batches_.back()->size() + (*task)->size() > options_.
max_batch_size
) {
584
options_.
max_batch_size
- batches_.back()->size()
[
all
...]
adaptive_shared_batch_scheduler.h
151
int
max_batch_size
= 1000;
member in struct:tensorflow::serving::AdaptiveSharedBatchScheduler::QueueOptions
302
size_t max_task_size() const override { return options_.
max_batch_size
; }
424
if (options.
max_batch_size
<= 0) {
425
return errors::InvalidArgument("
max_batch_size
must be positive; was ",
426
options.
max_batch_size
);
600
if (size > options_.
max_batch_size
) {
603
options_.
max_batch_size
);
609
current_batch_->size() + size > options_.
max_batch_size
) {
650
current_batch_ ? options_.
max_batch_size
- current_batch_->size() : 0;
653
return spare_batches * options_.
max_batch_size
+ current_batch_capacity
[
all
...]
/external/libtextclassifier/
text-classifier.cc
1386
const int
max_batch_size
= model_->selection_options()->batch_size();
local
1497
const int
max_batch_size
= model_->selection_options()->batch_size();
local
[
all
...]
Completed in 105 milliseconds