Searched refs:OutputType (Results 1 - 25 of 65) sorted by relevance

123

/external/tensorflow/tensorflow/core/kernels/
H A Dmultinomial_op.h24 template <typename Device, typename T, typename OutputType>
H A Dspacetobatch_functor.h52 template <typename InputType, typename OutputType>
53 void SubtleMustCopyFlatHelper(const Tensor& t, OutputType* output) {
63 // as needed. `OutputType` may be either `std::vector<int64>` or
67 template <typename OutputType>
68 void SubtleMustCopyFlat(const Tensor& t, OutputType* output) {
70 SubtleMustCopyFlatHelper<int32, OutputType>(t, output);
72 SubtleMustCopyFlatHelper<int64, OutputType>(t, output);
H A Dstring_to_number_op.cc33 template <typename OutputType>
49 auto output_flat = output_tensor->flat<OutputType>();
54 strings::SafeStringToNumeric<OutputType>(input_flat(i).c_str(),
H A Dmultinomial_op_gpu.cu.cc40 template <typename OutputType>
43 const float* maxima, OutputType* output) {
47 using UnsignedOutputType = typename std::make_unsigned<OutputType>::type;
54 template <typename T, typename OutputType>
55 struct MultinomialFunctor<GPUDevice, T, OutputType> {
63 typename TTypes<OutputType>::Matrix output) {
H A Dmultinomial_op.cc43 template <typename Device, typename T, typename OutputType>
52 typename TTypes<OutputType>::Matrix output);
55 template <typename T, typename OutputType>
56 struct MultinomialFunctor<CPUDevice, T, OutputType> {
64 typename TTypes<OutputType>::Matrix output) {
131 template <typename Device, typename T, typename OutputType>
198 functor::MultinomialFunctor<Device, T, OutputType>()(
202 samples_t->matrix<OutputType>());
/external/tensorflow/tensorflow/contrib/image/kernels/
H A Dsegmentation_ops.h61 using OutputType = int64;
65 OutputType* forest, OutputType* rank)
75 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE OutputType
76 find(OutputType index) const {
160 OutputType* const forest_;
162 OutputType* const rank_;
166 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void union_down(OutputType batch,
167 OutputType row,
168 OutputType co
[all...]
H A Dsegmentation_ops.cc34 using OutputType = typename BlockedImageUnionFindFunctor<bool>::OutputType;
58 forest_t.flat<OutputType>());
59 auto rank = rank_t.tensor<OutputType, 3>();
60 rank.device(ctx->eigen_device<Device>()) = rank.constant(OutputType(0));
63 auto forest = forest_t.tensor<OutputType, 3>();
65 ctx, output_t->flat<OutputType>(), images, forest, rank);
78 typename TTypes<OutputType>::Flat output,
80 typename TTypes<OutputType, 3>::Tensor forest,
81 typename TTypes<OutputType,
[all...]
/external/deqp/external/openglcts/modules/glesext/texture_border_clamp/
H A DesextcTextureBorderClampSamplingTexture.hpp41 template <typename InputType, typename OutputType>
49 glw::GLuint depth, InputType initValue, InputType initBorderColor, OutputType expectedValue,
50 OutputType expectedBorderColor, glw::GLenum inputType, glw::GLenum outputType);
110 inline OutputType get_expected_value(void) const
114 inline OutputType get_expected_border_color(void) const
142 OutputType m_expected_value;
143 OutputType m_expected_border_color;
291 template <typename InputType, typename OutputType>
298 const TestConfiguration<InputType, OutputType>& configuration);
312 bool checkResult(OutputType expectedValu
[all...]
H A DesextcTextureBorderClampSamplingTexture.cpp40 template <typename InputType, typename OutputType>
41 const glw::GLuint TextureBorderClampSamplingTexture<InputType, OutputType>::m_texture_unit = 0;
61 template <typename InputType, typename OutputType>
62 TestConfiguration<InputType, OutputType>::TestConfiguration(
66 OutputType expectedValue, OutputType expectedBorderColor, glw::GLenum inputType, glw::GLenum outputType)
92 template <typename InputType, typename OutputType>
93 TestConfiguration<InputType, OutputType>::TestConfiguration(const TestConfiguration& configuration)
120 template <typename InputType, typename OutputType>
121 TextureBorderClampSamplingTexture<InputType, OutputType>
[all...]
/external/clang/lib/Driver/
H A DAction.cpp76 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) argument
77 : JobAction(PreprocessJobClass, Input, OutputType) {}
81 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) argument
82 : JobAction(PrecompileJobClass, Input, OutputType) {}
86 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) argument
87 : JobAction(AnalyzeJobClass, Input, OutputType) {}
91 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) argument
92 : JobAction(MigrateJobClass, Input, OutputType) {}
96 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) argument
97 : JobAction(CompileJobClass, Input, OutputType) {}
101 BackendJobAction(Action *Input, types::ID OutputType) argument
106 AssembleJobAction(Action *Input, types::ID OutputType) argument
[all...]
/external/skia/src/gpu/glsl/
H A DGrGLSLVertexGeoBuilder.cpp59 static const char* output_type_name(GrGLSLGeometryBuilder::OutputType out) {
60 using OutputType = GrGLSLGeometryBuilder::OutputType;
62 case OutputType::kPoints: return "points";
63 case OutputType::kLineStrip: return "line_strip";
64 case OutputType::kTriangleStrip: return "triangle_strip";
70 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices,
H A DGrGLSLVertexGeoBuilder.h60 enum class OutputType { class in class:GrGLSLGeometryBuilder
66 void configure(InputType, OutputType, int maxVertices, int numInvocations = 1);
/external/skqp/src/gpu/glsl/
H A DGrGLSLVertexGeoBuilder.cpp59 static const char* output_type_name(GrGLSLGeometryBuilder::OutputType out) {
60 using OutputType = GrGLSLGeometryBuilder::OutputType;
62 case OutputType::kPoints: return "points";
63 case OutputType::kLineStrip: return "line_strip";
64 case OutputType::kTriangleStrip: return "triangle_strip";
70 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices,
H A DGrGLSLVertexGeoBuilder.h60 enum class OutputType { class in class:GrGLSLGeometryBuilder
66 void configure(InputType, OutputType, int maxVertices, int numInvocations = 1);
/external/python/cpython2/Include/
H A DcStringIO.h60 PyTypeObject *InputType, *OutputType; member in struct:PycStringIO_CAPI
68 (Py_TYPE(O)==PycStringIO->OutputType)
/external/gemmlowp/internal/
H A Doutput.h49 using OutputBufferType = typename BufferEvalImplType::OutputType;
51 using OutputType = RegisterBlock<OutputScalarType, kRows, kCols>;
55 OutputType Eval(InputType input, int, int) const {
56 OutputType output;
68 using OutputType = RegisterBuffer<std::int32_t, Size>;
74 OutputType Eval(InputType input) const {
80 OutputType output;
95 typedef RegisterBlock<std::int32_t, Rows, Cols> OutputType; typedef in struct:gemmlowp::OutputStageEvalImpl
100 OutputType Eval(InputType input, int row, int col) const {
101 OutputType outpu
125 typedef RegisterBuffer<std::int32_t, Size> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
153 typedef RegisterBuffer<std::int32_t, Size> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
187 typedef RegisterBuffer<std::uint8_t, Size> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
[all...]
H A Doutput_msa.h30 typedef RegBufferUint8<4> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
36 OutputType Eval(InputType input) const {
37 OutputType output;
63 typedef RegBufferUint8<8> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
69 OutputType Eval(InputType input) const {
70 OutputType output;
120 typedef RegBufferUint8<16> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
126 OutputType Eval(InputType input) const {
127 OutputType output;
138 typedef RegBufferUint8<32> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
160 typedef RegBufferInt16<4> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
191 typedef RegBufferInt16<8> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
208 typedef RegBufferInt16<16> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
226 typedef RegBufferInt16<32> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
[all...]
H A Doutput_sse.h30 typedef RegBufferUint8<4> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
36 OutputType Eval(InputType input) const {
37 OutputType output;
49 typedef RegBufferUint8<8> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
55 OutputType Eval(InputType input) const {
56 OutputType output;
69 typedef RegBufferUint8<16> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
75 OutputType Eval(InputType input) const {
76 OutputType output;
88 typedef RegBufferUint8<32> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
110 typedef RegBufferInt16<4> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
131 typedef RegBufferInt16<8> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
148 typedef RegBufferInt16<16> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
166 typedef RegBufferInt16<32> OutputType; typedef in struct:gemmlowp::OutputStageEvalBufferImpl
[all...]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DCodedOutputStreamTest.java59 OutputType getOutputType();
82 public OutputType getOutputType() {
83 return OutputType.STREAM;
107 public OutputType getOutputType() {
108 return OutputType.ARRAY;
145 public OutputType getOutputType() {
146 return OutputType.NIO_HEAP;
183 public OutputType getOutputType() {
184 return OutputType.NIO_DIRECT;
188 private enum OutputType { enum in class:CodedOutputStreamTest
[all...]
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMethodDescriptor.cs58 public MessageDescriptor OutputType { get { return outputType; } } property in class:Google.Protobuf.Reflection.MethodDescriptor
95 lookup = File.DescriptorPool.LookupSymbol(Proto.OutputType, this);
98 throw new DescriptorValidationException(this, "\"" + Proto.OutputType + "\" is not a message type.");
/external/deqp/modules/glshared/
H A DglsDrawTest.hpp82 enum OutputType enum in struct:deqp::gls::DrawTestSpec
183 static std::string outputTypeToString (OutputType type);
194 static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor);
195 static AttributeSpec createDefaultAttribute (InputType inputType, OutputType outputType, int componentCount); //!< allowed inputType values: INPUTTYPE_INT, INPUTTYPE_UNSIGNED_INT, INPUTTYPE_FLOAT
198 OutputType outputType;
/external/python/cpython2/Tools/framer/
H A Dexample.py98 class OutputType(InputType): class in class:cStringIO
/external/libcups/filter/
H A Drastertopwg.c208 strlcpy(outheader.OutputType, "Automatic",
209 sizeof(outheader.OutputType));
211 strlcpy(outheader.OutputType, "Graphics", sizeof(outheader.OutputType));
213 strlcpy(outheader.OutputType, "Photo", sizeof(outheader.OutputType));
215 strlcpy(outheader.OutputType, "Text", sizeof(outheader.OutputType));
217 strlcpy(outheader.OutputType, "TextAndGraphics",
218 sizeof(outheader.OutputType));
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorReductionCuda.h273 template <typename Self, typename Op, typename OutputType, bool PacketAccess, typename Enabled = void>
275 static void run(const Self&, Op&, const GpuDevice&, OutputType*, typename Self::Index) {
281 template <typename Self, typename Op, typename OutputType, bool PacketAccess>
283 Self, Op, OutputType, PacketAccess,
285 internal::is_same<float, OutputType>::value ||
286 internal::is_same<double, OutputType>::value,
288 static void run(const Self& self, Op& reducer, const GpuDevice& device, OutputType* output, typename Self::Index num_coeffs) {
358 template <typename OutputType>
359 static void run(const Self& self, Op& reducer, const GpuDevice& device, OutputType* output) {
367 FullReductionLauncher<Self, Op, OutputType, reducer_trait
[all...]
/external/clang/include/clang/Driver/
H A DAction.h210 PreprocessJobAction(Action *Input, types::ID OutputType);
220 PrecompileJobAction(Action *Input, types::ID OutputType);
230 AnalyzeJobAction(Action *Input, types::ID OutputType);
240 MigrateJobAction(Action *Input, types::ID OutputType);
250 CompileJobAction(Action *Input, types::ID OutputType);
260 BackendJobAction(Action *Input, types::ID OutputType);
270 AssembleJobAction(Action *Input, types::ID OutputType);

Completed in 1467 milliseconds

123