Home
last modified time | relevance | path

Searched defs:DepthwiseConv2D (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/xnnpack/
H A Ddepthwise_conv_2d_test.cc163 TEST(DepthwiseConv2D, SmallKernelWithSamePadding) { in TEST() argument
190 TEST(DepthwiseConv2D, SmallKernelWithValidPadding) { in TEST() argument
217 TEST(DepthwiseConv2D, StrideWithSamePadding) { in TEST() argument
248 TEST(DepthwiseConv2D, StrideWithValidPadding) { in TEST() argument
279 TEST(DepthwiseConv2D, DilationWithSamePadding) { in TEST() argument
310 TEST(DepthwiseConv2D, DilationWithValidPadding) { in TEST() argument
341 TEST(DepthwiseConv2D, DepthMultiplier) { in TEST() argument
374 TEST(DepthwiseConv2D, FP16Weights) { in TEST() argument
405 TEST(DepthwiseConv2D, INT8Weights) { in TEST() argument
436 TEST(DepthwiseConv2D, INT8ChannelWiseWeights) { in TEST() argument
[all …]
/aosp_15_r20/external/mesa3d/src/gallium/targets/teflon/
H A Dtest_teflon.cpp278 class DepthwiseConv2D : public testing::TestWithParam<std::tuple<bool, bool, int, int, int, int>> {… class
280 TEST_P(DepthwiseConv2D, Op) in TEST_P() argument
/aosp_15_r20/external/pytorch/test/cpp/tensorexpr/
H A Dtest_conv.cpp23 TEST(Conv, DepthwiseConv2D) { in TEST() argument
/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/mkl/
H A Dmkl_quantized_conv_ops_test.cc482 TEST_F(QuantizedConv2DTest, DepthwiseConv2D) { in TEST_F() argument
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/layers/
H A Dconvolutional.py2262 class DepthwiseConv2D(Conv2D): class