/* Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #define GLOG_NO_ABBREVIATED_SEVERITIES #define GOOGLE_GLOG_DLL_DECL #include "paddle/fluid/platform/miopen_helper.h" #include TEST(MIOpenHelper, ScopedTensorDescriptor) { using paddle::platform::ScopedTensorDescriptor; using paddle::platform::DataLayout; ScopedTensorDescriptor tensor_desc; std::vector shape = {2, 4, 6, 6}; auto desc = tensor_desc.descriptor(DataLayout::kNCHW, shape); miopenDataType_t type; int nd; std::vector dims(4); std::vector strides(4); paddle::platform::dynload::miopenGetTensorDescriptor(desc, &type, dims.data(), strides.data()); paddle::platform::dynload::miopenGetTensorDescriptorSize(desc, &nd); EXPECT_EQ(nd, 4); for (size_t i = 0; i < dims.size(); ++i) { EXPECT_EQ(dims[i], shape[i]); } EXPECT_EQ(strides[3], 1); EXPECT_EQ(strides[2], 6); EXPECT_EQ(strides[1], 36); EXPECT_EQ(strides[0], 144); // test tensor5d: ScopedTensorDescriptor ScopedTensorDescriptor tensor5d_desc; std::vector shape_5d = {2, 4, 6, 6, 6}; auto desc_5d = tensor5d_desc.descriptor(DataLayout::kNCDHW, shape_5d); std::vector dims_5d(5); std::vector strides_5d(5); paddle::platform::dynload::miopenGetTensorDescriptor( desc_5d, &type, dims_5d.data(), strides_5d.data()); paddle::platform::dynload::miopenGetTensorDescriptorSize(desc_5d, &nd); EXPECT_EQ(nd, 5); for (size_t i = 0; i < dims_5d.size(); ++i) { EXPECT_EQ(dims_5d[i], shape_5d[i]); } EXPECT_EQ(strides_5d[4], 1); EXPECT_EQ(strides_5d[3], 6); EXPECT_EQ(strides_5d[2], 36); EXPECT_EQ(strides_5d[1], 216); EXPECT_EQ(strides_5d[0], 864); } TEST(MIOpenHelper, ScopedConvolutionDescriptor) { using paddle::platform::ScopedConvolutionDescriptor; ScopedConvolutionDescriptor conv_desc; std::vector src_pads = {2, 2, 2}; std::vector src_strides = {1, 1, 1}; std::vector src_dilations = {1, 1, 1}; auto desc = conv_desc.descriptor(src_pads, src_strides, src_dilations); miopenConvolutionMode_t mode; int nd; std::vector pads(3); std::vector strides(3); std::vector dilations(3); paddle::platform::dynload::miopenGetConvolutionNdDescriptor( desc, 3, &nd, pads.data(), strides.data(), dilations.data(), &mode); EXPECT_EQ(nd, 3); for (size_t i = 0; i < src_pads.size(); ++i) { EXPECT_EQ(pads[i], src_pads[i]); EXPECT_EQ(strides[i], src_strides[i]); EXPECT_EQ(dilations[i], src_dilations[i]); } EXPECT_EQ(mode, miopenConvolution); }