Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/delegates/xnnpack/
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 …]
/external/mesa3d/src/gallium/targets/teflon/
Dtest_teflon.cpp313 class DepthwiseConv2D : public testing::TestWithParam<std::tuple<bool, bool, int, int, int, int>> {… class
315 TEST_P(DepthwiseConv2D, Op) in TEST_P() argument
/external/pytorch/test/cpp/tensorexpr/
Dtest_conv.cpp23 TEST(Conv, DepthwiseConv2D) { in TEST() argument
/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_quantized_conv_ops_test.cc482 TEST_F(QuantizedConv2DTest, DepthwiseConv2D) { in TEST_F() argument
/external/tensorflow/tensorflow/python/keras/layers/
Dconvolutional.py2262 class DepthwiseConv2D(Conv2D): class