/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | batch_to_space_nd.h | 73 for (int in_batch = 0; in_batch < input_batch_size; ++in_batch) { in BatchToSpaceND() local 74 const int out_batch = in_batch % output_batch_size; in BatchToSpaceND() 75 const int spatial_offset = in_batch / output_batch_size; in BatchToSpaceND() 91 input1_data + Offset(input1_shape, in_batch, in_h, in_w, 0); in BatchToSpaceND()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | cudnn_pooling_gpu.cc | 44 const int64_t in_batch = GetTensorDim(tensor_in, data_format, 'N'); in Compute() local 74 input_desc.set_count(in_batch) in Compute() 78 output_desc.set_count(in_batch) in Compute() 145 const int64_t in_batch = GetTensorDim(tensor_in_shape, data_format, 'N'); in Compute() local 208 orig_output_desc.set_count(in_batch) in Compute() 213 orig_input_desc.set_count(in_batch) in Compute()
|
D | conv_ops_3d.cc | 147 const int64_t in_batch = GetTensorDim(input, data_format_, 'N'); in Compute() local 183 data_format_, in_batch, {{out[0], out[1], out[2]}}, out_depth); in Compute() 236 const int64_t in_batch = GetTensorDim(input, data_format, 'N'); in launch() local 270 const uint64 m = in_batch * in_planes * in_rows * in_cols; in launch() 291 const uint64 m = in_batch; in launch() 325 data_format, in_batch, {{new_in_planes, new_in_rows, new_in_cols}}, in launch() 360 FORMAT_NCHW, in_batch, {{in_planes, in_rows, in_cols}}, in_depth); in launch() 400 input_desc.set_count(in_batch) in launch() 407 output_desc.set_count(in_batch) in launch() 462 ShapeFromFormat(FORMAT_NCHW, in_batch, in launch() [all …]
|
D | fused_batch_norm_op.cc | 131 const int64_t in_batch = GetTensorDim(x_input, tensor_format, 'N'); in operator ()() local 137 ShapeFromFormat(FORMAT_NHWC, in_batch, in operator ()() 142 ShapeFromFormat(FORMAT_NHWC, in_batch, in operator ()() 278 const int64_t in_batch = GetTensorDim(x_input, tensor_format, 'N'); in operator ()() local 284 ShapeFromFormat(FORMAT_NHWC, in_batch, in operator ()() 289 ShapeFromFormat(FORMAT_NHWC, in_batch, in operator ()() 373 const int64_t in_batch = GetTensorDim(x_input, tensor_format, 'N'); in operator ()() local 379 ShapeFromFormat(FORMAT_NHWC, in_batch, in operator ()() 384 ShapeFromFormat(FORMAT_NHWC, in_batch, in operator ()() 389 ShapeFromFormat(FORMAT_NHWC, in_batch, in operator ()() [all …]
|
D | fractional_avg_pool_op.cc | 270 const int64_t in_batch = orig_input_tensor_shape_flat(0); in Compute() local 275 context, in_batch != 0, in Compute() 303 in_cols * in_rows * in_batch); in Compute()
|
D | conv_ops_fused_impl.h | 467 const int64_t in_batch = GetTensorDim(input, params.data_format, 'N'); 515 ShapeFromFormat(params.data_format, in_batch, 550 ShapeFromFormat(FORMAT_NCHW, in_batch, in_rows, in_cols, in_depths); 580 input_desc.set_count(in_batch) 653 in_batch, // batch
|
D | conv_ops.cc | 796 const int64_t in_batch = GetTensorDim(input, data_format, 'N'); in operator ()() local 818 const uint64 m = in_batch * in_rows * in_cols; in operator ()() 839 const uint64 m = in_batch; in operator ()() 930 ShapeFromFormat(data_format, in_batch, new_in_rows, in operator ()() 963 ShapeFromFormat(FORMAT_NCHW, in_batch, in_rows, in_cols, in_depths); in operator ()() 1002 input_desc.set_count(in_batch) in operator ()() 1089 ConvParameters conv_parameters = {in_batch, // batch in operator ()()
|
D | pooling_ops_3d.cc | 167 const int64_t in_batch = GetTensorDim(tensor_in, data_format_, 'N'); in Compute() local 185 TensorShape out_shape = ShapeFromFormat(data_format_, in_batch, in Compute()
|
/external/ComputeLibrary/src/core/NEON/kernels/convolution/common/ |
D | shims.hpp | 174 const T* const in_batch = in + n*in_batch_stride; in nchw_to_nhwc() local 179 const T* const in_row = in_batch + i*in_row_stride; in nchw_to_nhwc() 345 const T* const in_batch = in + n*in_batch_stride; in nchw_to_nhwc() local 350 const T* const in_row = in_batch + i*in_row_stride; in nchw_to_nhwc() 405 const T* const in_batch = in + n*in_batch_stride; in nhwc_to_nchw() local 411 const T* const in_i = in_batch + i*in_row_stride; in nhwc_to_nchw() 588 const T* const in_batch = in + n*in_batch_stride; in nhwc_to_nchw() local 594 const T* const in_i = in_batch + i*in_row_stride; in nhwc_to_nchw()
|
/external/libbpf/src/ |
D | bpf.c | 667 static int bpf_map_batch_common(int cmd, int fd, void *in_batch, in bpf_map_batch_common() argument 680 attr.batch.in_batch = ptr_to_u64(in_batch); in bpf_map_batch_common() 701 int bpf_map_lookup_batch(int fd, void *in_batch, void *out_batch, void *keys, in bpf_map_lookup_batch() argument 705 return bpf_map_batch_common(BPF_MAP_LOOKUP_BATCH, fd, in_batch, in bpf_map_lookup_batch() 709 int bpf_map_lookup_and_delete_batch(int fd, void *in_batch, void *out_batch, in bpf_map_lookup_and_delete_batch() argument 714 fd, in_batch, out_batch, keys, values, in bpf_map_lookup_and_delete_batch()
|
D | bpf.h | 306 LIBBPF_API int bpf_map_lookup_batch(int fd, void *in_batch, void *out_batch, 332 LIBBPF_API int bpf_map_lookup_and_delete_batch(int fd, void *in_batch,
|
/external/bcc/src/cc/ |
D | libbpf.h | 164 int bpf_lookup_batch(int fd, __u32 *in_batch, __u32 *out_batch, void *keys, 168 int bpf_lookup_and_delete_batch(int fd, __u32 *in_batch, __u32 *out_batch,
|
D | libbpf.c | 415 int bpf_lookup_batch(int fd, __u32 *in_batch, __u32 *out_batch, void *keys, in bpf_lookup_batch() argument 418 return bpf_map_lookup_batch(fd, in_batch, out_batch, keys, values, count, in bpf_lookup_batch() 432 int bpf_lookup_and_delete_batch(int fd, __u32 *in_batch, __u32 *out_batch, in bpf_lookup_and_delete_batch() argument 435 return bpf_map_lookup_and_delete_batch(fd, in_batch, out_batch, keys, values, in bpf_lookup_and_delete_batch()
|
/external/bcc/src/cc/includes/ |
D | libbpf.h | 164 int bpf_lookup_batch(int fd, __u32 *in_batch, __u32 *out_batch, void *keys, 168 int bpf_lookup_and_delete_batch(int fd, __u32 *in_batch, __u32 *out_batch,
|
/external/libpalmrejection/ui/events/ozone/evdev/touch_filter/palm_model/ |
D | onedevice_train_palm_detection_filter_inference.cc | 470 for (int32_t in_batch = 0; in_batch < input_batch_size; ++in_batch) { in BatchToSpaceNDRank4() local 471 const int32_t out_batch = in_batch % output_batch_size; in BatchToSpaceNDRank4() 472 const int32_t spatial_offset = in_batch / output_batch_size; in BatchToSpaceNDRank4() 491 (((in_batch * input_height + in_h) * input_width + in_w) * in BatchToSpaceNDRank4()
|
D | onedevice_train_palm_detection_filter_inference_beta.cc | 469 for (int32_t in_batch = 0; in_batch < input_batch_size; ++in_batch) { in BatchToSpaceNDRank4() local 470 const int32_t out_batch = in_batch % output_batch_size; in BatchToSpaceNDRank4() 471 const int32_t spatial_offset = in_batch / output_batch_size; in BatchToSpaceNDRank4() 490 (((in_batch * input_height + in_h) * input_width + in_w) * in BatchToSpaceNDRank4()
|
D | onedevice_train_palm_detection_filter_inference_v2.cc | 469 for (int32_t in_batch = 0; in_batch < input_batch_size; ++in_batch) { in BatchToSpaceNDRank4() local 470 const int32_t out_batch = in_batch % output_batch_size; in BatchToSpaceNDRank4() 471 const int32_t spatial_offset = in_batch / output_batch_size; in BatchToSpaceNDRank4() 490 (((in_batch * input_height + in_h) * input_width + in_w) * in BatchToSpaceNDRank4()
|
/external/bpftool/include/uapi/linux/ |
D | bpf.h | 1305 __aligned_u64 in_batch; /* start batch, member
|
/external/kernel-headers/original/uapi/linux/ |
D | bpf.h | 1298 __aligned_u64 in_batch; /* start batch, member
|
/external/libbpf/include/uapi/linux/ |
D | bpf.h | 1305 __aligned_u64 in_batch; /* start batch, member
|
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
D | optimized_ops.h | 4562 for (int in_batch = 0; in_batch < input_batch_size; ++in_batch) { in BatchToSpaceND() local 4563 const int out_batch = in_batch % output_batch_size; in BatchToSpaceND() 4564 const int spatial_offset = in_batch / output_batch_size; in BatchToSpaceND() 4593 input1_data + Offset(input1_shape, in_batch, in_h, in_w, 0); in BatchToSpaceND()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | algebraic_simplifier_test.cc | 4071 int in_batch = 10; in TEST_F() member 4132 in_dims.push_back(options.in_batch); in TEST_F()
|
/external/bcc/libbpf-tools/powerpc/ |
D | vmlinux_510.h | 10390 __u64 in_batch; member
|
D | vmlinux.h | 10390 __u64 in_batch; member
|
/external/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 25381 __u64 in_batch; member
|