Home
last modified time | relevance | path

Searched refs:b_in (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dcrop_and_resize_op_gpu.cu.cc61 const int32 b_in = box_ind_ptr[b]; in CropAndResizeKernel() local
62 if (b_in < 0 || b_in >= batch) { in CropAndResizeKernel()
98 image_ptr[((b_in * image_height + top_y_index) * image_width + in CropAndResizeKernel()
103 image_ptr[((b_in * image_height + top_y_index) * image_width + in CropAndResizeKernel()
108 image_ptr[((b_in * image_height + bottom_y_index) * image_width + in CropAndResizeKernel()
113 image_ptr[((b_in * image_height + bottom_y_index) * image_width + in CropAndResizeKernel()
124 image_ptr[((b_in * image_height + closest_y_index) * image_width + in CropAndResizeKernel()
153 const int32 b_in = box_ind_ptr[b]; in CropAndResizeBackpropImageKernel() local
154 if (b_in < 0 || b_in >= batch) { in CropAndResizeBackpropImageKernel()
189 ((b_in * image_height + top_y_index) * image_width + in CropAndResizeBackpropImageKernel()
[all …]
Dcrop_and_resize_op.cc226 const int32 b_in = box_index(b); in operator ()() local
227 if (!FastBoundsCheck(b_in, batch_size)) { in operator ()()
272 image(b_in, top_y_index, left_x_index, d))); in operator ()()
274 image(b_in, top_y_index, right_x_index, d))); in operator ()()
276 image(b_in, bottom_y_index, left_x_index, d))); in operator ()()
278 image(b_in, bottom_y_index, right_x_index, d))); in operator ()()
300 image(b_in, closest_y_index, closest_x_index, d)); in operator ()()
451 const int32 b_in = box_index(b); in operator ()() local
452 if (!FastBoundsCheck(b_in, batch_size)) { in operator ()()
488 grads_image(b_in, top_y_index, left_x_index, d) += in operator ()()
[all …]
/external/libevent/sample/
Dle-proxy.c161 struct bufferevent *b_out, *b_in; in accept_cb() local
164 b_in = bufferevent_socket_new(base, fd, in accept_cb()
177 assert(b_in && b_out); in accept_cb()
183 bufferevent_free(b_in); in accept_cb()
196 bufferevent_free(b_in); in accept_cb()
201 bufferevent_setcb(b_in, readcb, NULL, eventcb, b_out); in accept_cb()
202 bufferevent_setcb(b_out, readcb, NULL, eventcb, b_in); in accept_cb()
204 bufferevent_enable(b_in, EV_READ|EV_WRITE); in accept_cb()
/external/tensorflow/tensorflow/core/graph/
Doptimizer_cse.cc154 gtl::InlinedVector<std::pair<const Node*, int>, 4> b_in(N_in); in Equivalent() local
156 FillInputs(b, &b_control_edges, &b_in); in Equivalent()
157 if (a_in != b_in) return false; in Equivalent()
Dmkl_layout_pass.cc2650 gtl::InlinedVector<std::pair<Node*, int>, 4> b_in(B_in); in CheckForNodeMerge() local
2651 FillInputs(b, &b_control_edges, &b_in); in CheckForNodeMerge()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Darithmetic_optimizer_test.cc3663 auto b_in = in TEST_F() local
3669 auto b = ops::PlaceholderWithDefault(s.WithOpName("b"), b_in, in TEST_F()