HomeSort by relevance Sort by last modified time
    Searched defs:batch (Results 126 - 150 of 256) sorted by null

1 2 3 4 56 7 8 91011

  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
propagate_fixed_sizes.cc 38 const int batch = input_shape.dims(0); local
61 output_shape->ReplaceDims({batch, output_height, output_width, output_depth});
242 const int batch = input_shape.dims(0); local
249 .copy_shape(Shape({batch, height * block_size, width * block_size,
265 const int batch = input_shape.dims(0); local
273 .copy_shape(Shape({batch, height / block_size, width / block_size,
    [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
op_level_cost_estimator.cc 481 int64 batch = image_shape.dim(0).size(); local
502 batch, ix, iy, iz, kx, ky, oz, ox, oy, sx, sy, padding};
504 VLOG(1) << "Batch Size:" << batch;
526 int64 ops = conv_dims.batch;
760 ops = conv_dims.batch;
810 ops = conv_dims.batch;
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
conv_grad_filter_ops.cc 56 // order (batch, height, width, depth).
131 auto batch = input.dimension(0); local
141 desc.N = batch;
197 "strides in the batch and depth dimensions."));
209 "dilations in the batch and depth dimensions."));
310 "strides in the batch and depth dimensions."));
322 "dilations in the batch and depth dimensions."));
397 // Shard 'batch' images into 'shard_size' groups of images to be fed
553 "strides in the batch and depth dimensions."));
568 "dilations in the batch and depth dimensions."))
    [all...]
conv_grad_input_ops.cc 137 auto batch = input_backward.dimension(0); local
146 desc.N = batch;
200 "strides in the batch and depth dimensions."));
212 "dilations in the batch and depth dimensions."));
315 "strides in the batch and depth dimensions."));
327 "dilations in the batch and depth dimensions."));
628 "strides in the batch and depth dimensions."));
643 "dilations in the batch and depth dimensions."));
676 // do not support striding on the batch or depth dimension).
    [all...]
conv_ops_fused.cc 425 for (int batch = 0; batch < input_batches; ++batch) {
428 (batch * input_height * task_params.input_width * input_depth);
542 const int patch_index = (batch * output_width * output_height) +
573 ((batch == (input_batches - 1)) &&
640 "strides in the batch and depth dimensions."));
646 // [ batch, in_rows, in_cols, in_depth ]
817 const int batch = static_cast<int>(batch_raw); variable
    [all...]
mkl_conv_ops.cc 85 "strides in the batch and depth dimensions."));
159 // The first dimension for input is batch.
166 errors::InvalidArgument("batch is too large"));
167 const int batch = static_cast<int>(input_batch_raw); variable
170 // do not support striding on the batch or depth dimension).
182 ShapeFromFormat(data_format_, batch, out_rows, out_cols, out_depth);
198 if (batch == 0) {
216 mkl_context.in_sizes[MklDims::N] = static_cast<size_t>(batch);
221 mkl_context.out_sizes[MklDims::N] = static_cast<size_t>(batch);
508 "strides in the batch and depth dimensions."))
    [all...]
  /frameworks/base/libs/hwui/
FrameBuilder.cpp 567 * Returns batch id for tessellatable shapes, based on paint. Checks to see if path effect/AA will
659 batchid_t batch = op.paint->isAntiAlias() ? OpBatchType::AlphaVertices : OpBatchType::Vertices; local
660 deferStrokeableOp(op, batch, BakedOpState::StrokeBehavior::Forced);
692 batchid_t batch = op.paint->isAntiAlias() ? OpBatchType::AlphaVertices : OpBatchType::Vertices; local
693 deferStrokeableOp(op, batch, BakedOpState::StrokeBehavior::Forced);
    [all...]
  /hardware/interfaces/camera/device/3.2/default/
CameraDeviceSession.cpp 361 auto batch = std::make_shared<InflightBatch>(); local
362 batch->mFirstFrame = frameNumber;
363 batch->mBatchSize = batchSize;
364 batch->mLastFrame = batch->mFirstFrame + batch->mBatchSize - 1;
365 batch->mNumPartialResults = mNumPartialResults;
367 batch->mBatchBufs.emplace(id, batch->mBatchSize);
370 mInflightBatches.push_back(batch);
398 std::shared_ptr<InflightBatch> batch = mInflightBatches[0]; local
622 std::shared_ptr<InflightBatch> batch = mInflightBatches[0]; local
641 std::shared_ptr<InflightBatch> batch = pair.second; local
713 std::shared_ptr<InflightBatch> batch = pair.second; local
    [all...]
  /hardware/interfaces/sensors/1.0/vts/functional/
VtsHalSensorsV1_0TargetTest.cpp 514 Return<Result> batch( function in class:SensorsHidlTest
518 return S()->batch(sensorHandle, samplingPeriodNs, maxReportLatencyNs);
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java 1444 int batch; \/\/ batch size for splits field in class:ConcurrentLinkedDeque.CLDSpliterator
    [all...]
LinkedBlockingDeque.java 1134 int batch; \/\/ batch size for splits field in class:LinkedBlockingDeque.LBDSpliterator
    [all...]
LinkedTransferQueue.java 1024 int batch; \/\/ batch size for splits field in class:LinkedTransferQueue.LTQSpliterator
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/api-client/google-api-client/1.22.0/
google-api-client-1.22.0.jar 
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 104 // For large size classes we use one of the chunks to store the batch.
108 void *batch[kMaxNumCached]; member in struct:__sanitizer::SizeClassMap::TransferBatch
320 typedef typename SizeClassMap::TransferBatch Batch;
353 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
357 Batch *b = region->free_list.Pop();
364 NOINLINE void DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) {
513 LFStack<Batch> free_list;
538 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
541 Batch *b = region->free_list.Pop();
581 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch)))
986 void *batch[2 * SizeClassMap::kMaxNumCached]; member in struct:__sanitizer::SizeClassAllocatorLocalCache::PerClass
    [all...]
  /external/iptables/iptables/
nft.c 88 struct mnl_nlmsg_batch *batch; member in struct:batch_page
91 /* selected batch page is 256 Kbytes long to load ruleset of
101 /* libmnl needs higher buffer to handle batch overflows */
110 mnl_nftnl_batch_page_add(struct mnl_nlmsg_batch *batch)
118 batch_page->batch = batch;
150 free(batch_page->batch);
174 iov[i].iov_base = mnl_nlmsg_batch_head(batch_page->batch);
175 iov[i].iov_len = mnl_nlmsg_batch_size(batch_page->batch);
179 mnl_nlmsg_batch_head(batch_page->batch),
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_context.h 264 struct i915_winsys_batchbuffer *batch; member in struct:i915_context
  /external/mesa3d/src/intel/vulkan/
genX_cmd_buffer.c 35 emit_lrm(struct anv_batch *batch,
38 anv_batch_emit(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
45 emit_lri(struct anv_batch *batch, uint32_t reg, uint32_t imm)
47 anv_batch_emit(batch, GENX(MI_LOAD_REGISTER_IMM), lri) {
65 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
71 anv_batch_emit(&cmd_buffer->batch, GENX(STATE_BASE_ADDRESS), sba) {
148 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
711 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
731 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
742 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc)
1940 struct anv_batch *batch = &cmd_buffer->batch; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_context.h 173 struct intel_batchbuffer batch; member in struct:intel_context
  /external/tensorflow/tensorflow/contrib/lite/toco/
tooling_util.cc 1062 int batch = 1; local
    [all...]
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
ExprModelTest.java 412 Expr[] batch = {d, e, u1, u2, u1GetCondD, u2GetCondE, xxPlusU2getCondE, abTernary, local
414 assertExactMatch(shouldRead, batch);
    [all...]
  /hardware/libhardware/include/hardware/
sensors.h 72 * flags for (*batch)()
74 * see (*batch)() documentation for details.
462 /* number of events reserved for this sensor in the batch mode FIFO.
497 * frequencies are requested through batch()/setDelay() the events will be generated at this
498 * frequency instead. It can be used by the framework or applications to estimate when the batch
626 int (*batch)(struct sensors_poll_device_1* dev, member in struct:sensors_poll_device_1
632 * to the end of the "batch mode" FIFO for the specified sensor and flushes
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
omx_video_base.cpp 2046 OMX_PARAM_U32TYPE* batch = local
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/src/
omx_video_base.cpp 2081 OMX_PARAM_U32TYPE* batch = local
    [all...]
  /external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
DeqpTestRunner.java 364 // test is not in the current working batch of the runner, i.e. it cannot be
567 * Signal listener that batch ended and forget incomplete results.
1265 TestBatch batch = selectRunBatch(mRemainingTests, null); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_context.h 285 * Used for any batch entry with a relocated pointer that will be used
517 /** True if we know the batch has been flushed since we ended the query. */
716 struct intel_batchbuffer batch; member in struct:brw_context
739 * not using the SwapBuffers itself as a barrier but the first batch
    [all...]

Completed in 932 milliseconds

1 2 3 4 56 7 8 91011