Home
last modified time | relevance | path

Searched refs:InputT (Results 1 – 19 of 19) sorted by relevance

/external/guava/android/guava/src/com/google/common/util/concurrent/
DAggregateFuture.java42 abstract class AggregateFuture<InputT, OutputT> extends AggregateFutureState<OutputT> {
55 @NullableDecl private ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures;
61 ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures, in AggregateFuture()
126 for (final ListenableFuture<? extends InputT> future : futures) { in init()
170 final ImmutableCollection<? extends Future<? extends InputT>> localFutures = in init()
179 for (ListenableFuture<? extends InputT> future : futures) { in init()
246 private void collectValueFromNonCancelledFuture(int index, Future<? extends InputT> future) { in collectValueFromNonCancelledFuture()
259 ImmutableCollection<? extends Future<? extends InputT>> in decrementCountAndMaybeComplete()
270 ImmutableCollection<? extends Future<? extends InputT>> in processCompleted()
274 for (Future<? extends InputT> future : futuresIfNeedToCollectAtCompletion) { in processCompleted()
[all …]
/external/guava/guava/src/com/google/common/util/concurrent/
DAggregateFuture.java42 abstract class AggregateFuture<InputT, OutputT> extends AggregateFutureState<OutputT> {
55 private @Nullable ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures;
61 ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures, in AggregateFuture()
126 for (final ListenableFuture<? extends InputT> future : futures) { in init()
170 final ImmutableCollection<? extends Future<? extends InputT>> localFutures = in init()
179 for (ListenableFuture<? extends InputT> future : futures) { in init()
246 private void collectValueFromNonCancelledFuture(int index, Future<? extends InputT> future) { in collectValueFromNonCancelledFuture()
259 ImmutableCollection<? extends Future<? extends InputT>> in decrementCountAndMaybeComplete()
270 ImmutableCollection<? extends Future<? extends InputT>> in processCompleted()
274 for (Future<? extends InputT> future : futuresIfNeedToCollectAtCompletion) { in processCompleted()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dredux_functor.h38 template <typename InputT, typename AccumT, typename OutputT,
60 input.template flat<InputT>().template cast<OutputT>().reshape( in operator()
77 const InputT* input_data = input.template flat<InputT>().data(); in operator()
90 Eigen::Tensor<const InputT, 1, Eigen::RowMajor, Eigen::Index>, in operator()
102 const InputT* my_job_start = input_data + inner_dim_start; in operator()
115 const Eigen::Index compute_input_bytes = compute_size * sizeof(InputT); in operator()
144 const InputT* input_data = input.template flat<InputT>().data(); in operator()
156 Eigen::Tensor<const InputT, 1, Eigen::RowMajor, Eigen::Index>, in operator()
178 const Eigen::Index compute_input_bytes = compute_size * sizeof(InputT); in operator()
206 template <typename InputT, typename AccumT, typename OutputT,
[all …]
Dspacetobatch_functor.h87 using InputT = typename std::conditional<B2S, T, const T>::type; member
105 typename TTypes<InputT, NUM_BLOCK_DIMS + 2>::Tensor space_tensor,
/external/auto/value/src/test/java/com/google/auto/value/extension/memoized/
DMemoizedTest.java456 interface TypeEdgeIterable<InputT, ResultT> {}
460 interface TypePath<InputT, ResultT> {}
462 abstract static class AbstractTypePath<InputT, ResultT> {
463 abstract TypeEdgeIterable<InputT, ResultT> edges(); in edges()
467 abstract static class ResourceUriPath<InputT> extends AbstractTypePath<InputT, ResourceUri> {
468 static <InputT> ResourceUriPath<InputT> create( in create()
469 TypeEdgeIterable<InputT, ResourceUri> edges) { in create() argument
474 TypePath<InputT, String> toServiceName() { in toServiceName()
475 return new TypePath<InputT, String>() {}; in toServiceName()
/external/llvm-project/clang/test/SemaTemplate/
Ddeduction-crash.cpp150 template <typename InputT, typename OutputT>
153 OutputT evaluateSelectionRequirement(InputT &&Value) {
157 template <typename InputT, typename OutputT>
158 OutputT SourceSelectionRequirement<InputT, OutputT>::
159 evaluateSelectionRequirement<void>(InputT &&Value) { // expected-error {{cannot specialize a member…
/external/tensorflow/tensorflow/stream_executor/rocm/
Drocm_fft.h118 template <typename FuncT, typename InputT, typename OutputT>
121 const DeviceMemory<InputT> &input,
126 template <typename FuncT, typename InputT, typename OutputT>
128 const DeviceMemory<InputT> &input,
Drocm_fft.cc508 template <typename FuncT, typename InputT, typename OutputT>
510 const DeviceMemory<InputT> &input, in DoFftInternal()
523 GpuComplex(const_cast<InputT *>(GpuMemory(input))), in DoFftInternal()
534 template <typename FuncT, typename InputT, typename OutputT>
537 const DeviceMemory<InputT> &input, in DoFftWithDirectionInternal()
550 GpuComplex(const_cast<InputT *>(GpuMemory(input))), in DoFftWithDirectionInternal()
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_fft.h122 template <typename FuncT, typename InputT, typename OutputT>
125 const DeviceMemory<InputT> &input,
130 template <typename FuncT, typename InputT, typename OutputT>
132 const DeviceMemory<InputT> &input,
Dcuda_fft.cc457 template <typename FuncT, typename InputT, typename OutputT>
459 const DeviceMemory<InputT> &input, in DoFftInternal()
463 DeviceMemory<InputT> input_maybe_copy = input; in DoFftInternal()
479 std::is_same<InputT, std::complex<float>>::value && in DoFftInternal()
487 input_maybe_copy = DeviceMemory<InputT>(allocated.ValueOrDie()); in DoFftInternal()
499 GpuComplex(const_cast<InputT *>(GpuMemory(input_maybe_copy))), in DoFftInternal()
510 template <typename FuncT, typename InputT, typename OutputT>
513 const DeviceMemory<InputT> &input, in DoFftWithDirectionInternal()
527 GpuComplex(const_cast<InputT *>(GpuMemory(input))), in DoFftWithDirectionInternal()
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dquantize.h30 template <typename InputT, typename OutputT>
33 const InputT* input_data, in AffineQuantize()
43 const InputT val = input_data[i]; in AffineQuantize()
Ddequantize.h30 template <typename InputT, typename OutputT>
33 const InputT* input_data, in Dequantize()
Dsoftmax.h66 template <typename InputT, typename OutputT>
68 const RuntimeShape& input_shape, const InputT* input_data, in Softmax()
93 InputT max_in_row = std::numeric_limits<InputT>::min(); in Softmax()
/external/angle/src/libANGLE/renderer/d3d/
DIndexDataManager.cpp27 template <typename InputT, typename DestT>
35 const InputT *in = static_cast<const InputT *>(input); in ConvertIndexArray()
40 InputT srcRestartIndex = static_cast<InputT>(gl::GetPrimitiveRestartIndex(sourceType)); in ConvertIndexArray()
/external/tensorflow/tensorflow/lite/micro/kernels/
Dgather.cc106 template <typename InputT, typename PositionsT>
112 GetTensorData<InputT>(input), GetTensorShape(positions), in Gather()
114 GetTensorShape(output), GetTensorData<InputT>(output)); in Gather()
/external/tensorflow/tensorflow/lite/kernels/
Dgather.cc106 template <typename InputT, typename PositionsT>
112 GetTensorData<InputT>(input), GetTensorShape(positions), in Gather()
114 GetTensorShape(output), GetTensorData<InputT>(output)); in Gather()
/external/deqp/modules/gles2/functional/
Des2fShaderMatrixTests.cpp335 template <int InputT, int DataT>
/external/deqp/modules/gles3/functional/
Des3fShaderMatrixTests.cpp493 template <int InputT, int DataT>
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderMatrixTests.cpp488 template <int InputT, int DataT>