Home
last modified time | relevance | path

Searched refs:SamplingType (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/
Dresize_test.cc45 attr.type = SamplingType::BILINEAR; in TEST()
70 attr.type = SamplingType::BILINEAR; in TEST()
94 attr.type = SamplingType::BILINEAR; in TEST()
121 attr.type = SamplingType::BILINEAR; in TEST()
147 attr.type = SamplingType::BILINEAR; in TEST()
172 attr.type = SamplingType::NEAREST; in TEST()
198 attr.type = SamplingType::NEAREST; in TEST()
224 attr.type = SamplingType::NEAREST; in TEST()
Dresize.cc77 if (attr.type == SamplingType::BILINEAR) { in GenerateCode()
99 } else if (attr.type == SamplingType::NEAREST) { in GenerateCode()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dresize_test_util.cc34 attr.type = SamplingType::BILINEAR; in ResizeBilinearAlignedTest()
66 attr.type = SamplingType::BILINEAR; in ResizeBilinearNonAlignedTest()
98 attr.type = SamplingType::BILINEAR; in ResizeBilinearWithoutHalfPixelTest()
130 attr.type = SamplingType::BILINEAR; in ResizeBilinearWithHalfPixelTest()
165 attr.type = SamplingType::NEAREST; in ResizeNearestTest()
197 attr.type = SamplingType::NEAREST; in ResizeNearestAlignCornersTest()
229 attr.type = SamplingType::NEAREST; in ResizeNearestHalfPixelCentersTest()
Dresize.cc72 if (attr.type == SamplingType::NEAREST) { in GetResizeCode()
211 if (attr.type == SamplingType::NEAREST) { in GetResize3DCode()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Doperations.h392 enum class SamplingType { enum
401 SamplingType type = SamplingType::UNKNOWN;
414 SamplingType type = SamplingType::NEAREST;
Dmodel_builder.cc1523 explicit Resize2DOperationParser(SamplingType sampling_type) in Resize2DOperationParser()
1565 case SamplingType::BILINEAR: in GetAlignCornersValue()
1568 case SamplingType::NEAREST: in GetAlignCornersValue()
1571 case SamplingType::UNKNOWN: in GetAlignCornersValue()
1588 if (sampling_type_ == SamplingType::BILINEAR) { in GetHalfPixelCentersValue()
1604 SamplingType sampling_type_ = SamplingType::UNKNOWN;
2406 return std::make_unique<Resize2DOperationParser>(SamplingType::BILINEAR); in NewOperationParser()
2408 return std::make_unique<Resize2DOperationParser>(SamplingType::NEAREST); in NewOperationParser()
/external/deqp/modules/gles31/functional/
Des31fFboSRGBWriteControlTests.cpp119 enum SamplingType enum
143 const SamplingType samplingTypeList [] = in buildSamplingPassType()
156 switch (static_cast<SamplingType>(samplerTypeIdx)) in buildSamplingPassType()
782 void setSamplingType (const SamplingType samplerIdx);
814 …ate (const deUint32 targetType, const deUint32 attachment, const SamplingType samplingType) c…
840 SamplingType m_samplingType;
901 void Renderer::setSamplingType (const SamplingType samplingType) in setSamplingType()
1268 void Renderer::logState (const deUint32 targetType, const deUint32 attachment, const SamplingType s… in logState()
1385 renderer.setSamplingType(static_cast<SamplingType>(samplingIdx)); in iterate()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/transformations/
Dremove_noop_test.cc189 attr.type = SamplingType::BILINEAR; in TEST()