Searched defs:gather (Results 1 - 25 of 35) sorted by relevance

12

/external/python/cpython2/Lib/curses/
H A Dtextpad.py148 def gather(self): member in class:Textbox
175 return self.gather()
/external/python/cpython3/Lib/curses/
H A Dtextpad.py160 def gather(self): member in class:Textbox
188 return self.gather()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dvariable_ops.cc120 xla::ComputationDataHandle gather; variable
124 builder, &gather));
125 ctx->SetOutput(0, gather);
H A Dgather_op.cc106 // Construct the while loop body's function. The implementation of gather is:
159 init, "gather", builder));
198 xla::ComputationDataHandle gather; variable
202 builder, &gather));
203 context->SetOutput(0, gather);
239 xla::ComputationDataHandle gather; variable
243 indices_type, builder, &gather));
244 context->SetOutput(0, gather);
H A Dtensor_array_ops.cc314 // Look for the case where the gather takes a simple slice from the
340 xla::ComputationDataHandle gather; variable
344 /*indices_are_nd=*/false, dtype_, index_type, b, &gather));
345 ctx->SetOutput(0, gather);
/external/tensorflow/tensorflow/contrib/lite/kernels/
H A Dgather.cc27 namespace gather { namespace in namespace:tflite::ops::builtin
121 } // namespace gather
124 static TfLiteRegistration r = {nullptr, nullptr, gather::Prepare,
125 gather::Eval};
/external/skia/src/gpu/
H A DGrTextureOpList.cpp164 auto gather = [ alloc SkDEBUGCODE(, this) ] (GrSurfaceProxy* p) { local
170 op->visitProxies(gather);
H A DGrRenderTargetOpList.cpp282 auto gather = [ alloc SkDEBUGCODE(, this) ] (GrSurfaceProxy* p) { local
286 recordedOp.visitProxies(gather); // only diff from the GrTextureOpList version
/external/skqp/src/gpu/
H A DGrTextureOpList.cpp164 auto gather = [ alloc SkDEBUGCODE(, this) ] (GrSurfaceProxy* p) { local
170 op->visitProxies(gather);
H A DGrRenderTargetOpList.cpp282 auto gather = [ alloc SkDEBUGCODE(, this) ] (GrSurfaceProxy* p) { local
286 recordedOp.visitProxies(gather); // only diff from the GrTextureOpList version
/external/tensorflow/tensorflow/compiler/aot/tests/
H A Dtfcompile_test.cc146 GatherComp gather; local
147 EXPECT_EQ(gather.arg0_data(), gather.args()[0]);
148 EXPECT_EQ(gather.arg1_data(), gather.args()[1]);
150 // Successful gather.
153 std::copy(params + 0, params + 4, gather.arg0_data());
155 std::copy(indices + 0, indices + 2, gather.arg1_data());
156 EXPECT_TRUE(gather.Run());
157 EXPECT_EQ(gather
[all...]
/external/python/cpython3/Lib/asyncio/
H A Dtasks.py6 'gather', 'shield', 'ensure_future', 'run_coroutine_threadsafe',
534 """Helper for gather().
555 def gather(*coros_or_futures, loop=None, return_exceptions=False): function
/external/tensorflow/tensorflow/python/ops/
H A Dtensor_array_ops.py291 return self.gather(math_ops.range(0, self.size()), name=name)
293 def gather(self, indices, name=None): member in class:_GraphTensorArray
627 def gather(self, indices, name=None): member in class:_EagerTensorArray
895 def gather(self, indices, name=None): member in class:TensorArray
910 return self._implementation.gather(indices, name=name)
H A Darray_ops.py61 @@gather
1226 return gather(reshaped_tensor, indices, axis=axis)
1299 out_values = gather(a.values, to_gather, name=name)
2662 @tf_export("gather")
2663 def gather(params, indices, validate_indices=None, name=None, axis=0): function
2667 return gen_array_ops.gather(
2673 gather.__doc__ = gen_array_ops.gather_v2.__doc__
/external/skia/src/shaders/
H A DSkImageShader.cpp355 auto gather = alloc->make<SkJumper_GatherCtx>(); local
356 gather->pixels = pm.addr();
357 gather->stride = pm.rowBytesAsPixels();
358 gather->width = pm.width();
359 gather->height = pm.height();
396 void* ctx = gather;
447 p->append(SkRasterPipeline::bilerp_clamp_8888, gather);
/external/skqp/src/shaders/
H A DSkImageShader.cpp315 auto gather = alloc->make<SkJumper_GatherCtx>(); local
316 gather->pixels = pm.addr();
317 gather->stride = pm.rowBytesAsPixels();
318 gather->width = pm.width();
319 gather->height = pm.height();
341 void* ctx = gather;
389 p->append(SkRasterPipeline::bilerp_clamp_8888, gather);
/external/swiftshader/src/Renderer/
H A DSampler.hpp227 bool gather; member in class:sw::Sampler
/external/boringssl/mac-x86_64/crypto/fipsmodule/
H A Dx86_64-mont5.S2320 jmp L$gather
2323 L$gather:
2381 jnz L$gather
/external/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp164 void gather(Instruction *, const ValueVector &);
296 void Scalarizer::gather(Instruction *Op, const ValueVector &CV) { function in class:Scalarizer
393 gather(&I, Res);
423 gather(&SI, Res);
468 gather(&GEPI, Res);
486 gather(&CI, Res);
541 gather(&BCI, Res);
565 gather(&SVI, Res);
590 gather(&PHI, Res);
614 gather(
[all...]
/external/skia/src/jumper/
H A DSkJumper_stages_lowp.cpp80 // GP: geometry in, pixels out. -- think, a memory gather
470 SI V gather(const T* ptr, U32 ix) { function
478 F gather(const float* p, U32 ix) { function
487 U32 gather(const uint32_t* p, U32 ix) { function
496 SI V gather(const T* ptr, U32 ix) { function
598 from_8888(gather<U32>(ptr, ix), &r, &g, &b, &a);
603 from_8888(gather<U32>(ptr, ix), &b, &g, &r, &a);
647 from_565(gather<U16>(ptr, ix), &r, &g, &b);
692 from_4444(gather<U16>(ptr, ix), &r,&g,&b,&a);
719 a = cast<U16>(gather<U
[all...]
/external/skqp/src/jumper/
H A DSkJumper_stages_lowp.cpp80 // GP: geometry in, pixels out. -- think, a memory gather
470 SI V gather(const T* ptr, U32 ix) { function
478 F gather(const float* p, U32 ix) { function
487 U32 gather(const uint32_t* p, U32 ix) { function
496 SI V gather(const T* ptr, U32 ix) { function
598 from_8888(gather<U32>(ptr, ix), &r, &g, &b, &a);
603 from_8888(gather<U32>(ptr, ix), &b, &g, &r, &a);
647 from_565(gather<U16>(ptr, ix), &r, &g, &b);
692 from_4444(gather<U16>(ptr, ix), &r,&g,&b,&a);
719 a = cast<U16>(gather<U
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_cost_analysis.cc536 Status HloCostAnalysis::HandleGather(const HloInstruction* gather) { argument
H A Dhlo_verifier.cc427 Status ShapeVerifier::HandleGather(HloInstruction* gather) { argument
429 gather,
431 gather->operand(0)->shape(), gather->operand(1)->shape(),
432 gather->gather_dimension_numbers(), gather->gather_window_bounds()));
/external/tensorflow/tensorflow/contrib/keras/api/keras/backend/
H A D__init__.py67 from tensorflow.python.keras._impl.keras.backend import gather namespace
/external/tensorflow/tensorflow/python/keras/backend/
H A D__init__.py67 from tensorflow.python.keras._impl.keras.backend import gather namespace

Completed in 808 milliseconds

12