-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add unittest for new matmul_v2 kernel
- Loading branch information
Showing
7 changed files
with
178 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
/* Copyright (c) 2021 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. */ | ||
|
||
#include <gtest/gtest.h> | ||
#include <memory> | ||
|
||
#include "paddle/pten/hapi/include/linalg.h" | ||
|
||
#include "paddle/pten/core/dense_tensor.h" | ||
#include "paddle/pten/core/kernel_registry.h" | ||
#include "paddle/pten/hapi/lib/utils/allocator.h" | ||
#include "paddle/pten/kernels/cuda/utils.h" | ||
|
||
PT_DECLARE_MODULE(LinalgCPU); | ||
|
||
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) | ||
PT_DECLARE_MODULE(LinalgCUDA); | ||
#endif | ||
|
||
namespace framework = paddle::framework; | ||
using DDim = paddle::framework::DDim; | ||
|
||
TEST(API, matmul_cpu) { | ||
// 1. create tensor | ||
const auto alloc = std::make_shared<paddle::experimental::DefaultAllocator>( | ||
paddle::platform::CPUPlace()); | ||
auto dense_x = std::make_shared<pten::DenseTensor>( | ||
alloc, | ||
pten::DenseTensorMeta(pten::DataType::FLOAT32, | ||
framework::make_ddim({3, 3}), | ||
pten::DataLayout::NCHW)); | ||
|
||
auto* dense_x_data = dense_x->mutable_data<float>(); | ||
|
||
auto dense_y = std::make_shared<pten::DenseTensor>( | ||
alloc, | ||
pten::DenseTensorMeta(pten::DataType::FLOAT32, | ||
framework::make_ddim({3, 3}), | ||
pten::DataLayout::NCHW)); | ||
auto* dense_y_data = dense_y->mutable_data<float>(); | ||
|
||
for (size_t i = 0; i < 9; ++i) { | ||
dense_x_data[i] = 1.0; | ||
dense_y_data[i] = 2.0; | ||
} | ||
std::vector<float> sum(9, 6.0); | ||
|
||
paddle::experimental::Tensor x(dense_x); | ||
paddle::experimental::Tensor y(dense_y); | ||
|
||
// 2. test API | ||
auto out = paddle::experimental::matmul(x, y, false, false); | ||
|
||
// 3. check result | ||
ASSERT_EQ(out.shape().size(), 2); | ||
ASSERT_EQ(out.shape()[0], 3); | ||
ASSERT_EQ(out.shape()[1], 3); | ||
ASSERT_EQ(out.numel(), 9); | ||
ASSERT_EQ(out.type(), pten::DataType::FLOAT32); | ||
ASSERT_EQ(out.layout(), pten::DataLayout::NCHW); | ||
ASSERT_EQ(out.initialized(), true); | ||
|
||
auto dense_out = std::dynamic_pointer_cast<pten::DenseTensor>(out.impl()); | ||
|
||
for (size_t i = 0; i < 9; i++) { | ||
ASSERT_NEAR(sum[i], dense_out->data<float>()[i], 1e-6f); | ||
} | ||
} | ||
|
||
TEST(API, matmul_cuda) { | ||
// Prepare CPU Dense Tensor | ||
const auto alloc_cpu = | ||
std::make_shared<paddle::experimental::DefaultAllocator>( | ||
paddle::platform::CPUPlace()); | ||
auto ref_x = std::make_shared<pten::DenseTensor>( | ||
alloc_cpu, | ||
pten::DenseTensorMeta(pten::DataType::FLOAT32, | ||
framework::make_ddim({3, 3}), | ||
pten::DataLayout::NCHW)); | ||
|
||
auto* ref_x_data = ref_x->mutable_data<float>(); | ||
|
||
auto ref_y = std::make_shared<pten::DenseTensor>( | ||
alloc_cpu, | ||
pten::DenseTensorMeta(pten::DataType::FLOAT32, | ||
framework::make_ddim({3, 3}), | ||
pten::DataLayout::NCHW)); | ||
auto* ref_y_data = ref_y->mutable_data<float>(); | ||
|
||
for (size_t i = 0; i < 9; ++i) { | ||
ref_x_data[i] = 1.0; | ||
ref_y_data[i] = 2.0; | ||
} | ||
std::vector<float> sum(9, 6.0); | ||
|
||
// 1. create tensor | ||
const auto alloc_cuda = | ||
std::make_shared<paddle::experimental::DefaultAllocator>( | ||
paddle::platform::CUDAPlace()); | ||
auto dense_x = std::make_shared<pten::DenseTensor>( | ||
alloc_cuda, | ||
pten::DenseTensorMeta(pten::DataType::FLOAT32, | ||
framework::make_ddim({3, 3}), | ||
pten::DataLayout::NCHW)); | ||
|
||
auto dense_y = std::make_shared<pten::DenseTensor>( | ||
alloc_cuda, | ||
pten::DenseTensorMeta(pten::DataType::FLOAT32, | ||
framework::make_ddim({3, 3}), | ||
pten::DataLayout::NCHW)); | ||
|
||
auto& pool = paddle::platform::DeviceContextPool::Instance(); | ||
auto place = paddle::platform::CUDAPlace(); | ||
auto* dev_ctx = pool.GetByPlace(place); | ||
|
||
pten::Copy(*dev_ctx, *ref_x.get(), dense_x.get()); | ||
pten::Copy(*dev_ctx, *ref_y.get(), dense_y.get()); | ||
|
||
paddle::experimental::Tensor x(dense_x); | ||
paddle::experimental::Tensor y(dense_y); | ||
|
||
// 2. test API | ||
auto out = paddle::experimental::matmul(x, y, false, false); | ||
|
||
// 3. check result | ||
ASSERT_EQ(out.shape().size(), 2); | ||
ASSERT_EQ(out.shape()[0], 3); | ||
ASSERT_EQ(out.shape()[1], 3); | ||
ASSERT_EQ(out.numel(), 9); | ||
ASSERT_EQ(out.type(), pten::DataType::FLOAT32); | ||
ASSERT_EQ(out.layout(), pten::DataLayout::NCHW); | ||
ASSERT_EQ(out.initialized(), true); | ||
|
||
auto dense_out = std::dynamic_pointer_cast<pten::DenseTensor>(out.impl()); | ||
|
||
auto ref_out = std::make_shared<pten::DenseTensor>( | ||
alloc_cpu, | ||
pten::DenseTensorMeta( | ||
pten::DataType::FLOAT32, out.shape(), pten::DataLayout::NCHW)); | ||
|
||
pten::Copy(*dev_ctx, *dense_out.get(), ref_out.get()); | ||
|
||
for (size_t i = 0; i < 9; i++) { | ||
ASSERT_NEAR(sum[i], ref_out->data<float>()[i], 1e-6f); | ||
} | ||
} |
7758f14
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🕵️ CI failures summary
🔍 PR: #36844 Commit ID: 7758f14 contains failed CI.
🔹 Failed: PR-CI-APPROVAL
approve_failed
🔹 Failed: PR-CI-Mac-Python3
build_failed
🔹 Failed: PR-CI-Windows-OPENBLAS
build_failed