test_dot_api.cc 3.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* 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>

18
#include "paddle/pten/api/include/api.h"
19

20
#include "paddle/pten/api/lib/utils/allocator.h"
21 22 23
#include "paddle/pten/core/dense_tensor.h"
#include "paddle/pten/core/kernel_registry.h"

24 25 26
namespace paddle {
namespace tests {

27
namespace framework = paddle::framework;
28
using DDim = pten::framework::DDim;
29 30 31 32

// TODO(chenweihang): Remove this test after the API is used in the dygraph
TEST(API, dot) {
  // 1. create tensor
33
  const auto alloc = std::make_unique<paddle::experimental::DefaultAllocator>(
34 35
      paddle::platform::CPUPlace());
  auto dense_x = std::make_shared<pten::DenseTensor>(
36
      alloc.get(),
37
      pten::DenseTensorMeta(pten::DataType::FLOAT32,
38
                            pten::framework::make_ddim({3, 10}),
39
                            pten::DataLayout::NCHW));
40 41
  auto* dense_x_data =
      dense_x->mutable_data<float>(paddle::platform::CPUPlace());
42 43

  auto dense_y = std::make_shared<pten::DenseTensor>(
44
      alloc.get(),
45
      pten::DenseTensorMeta(pten::DataType::FLOAT32,
46
                            pten::framework::make_ddim({3, 10}),
47
                            pten::DataLayout::NCHW));
48 49
  auto* dense_y_data =
      dense_y->mutable_data<float>(paddle::platform::CPUPlace());
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

  float sum[3] = {0.0, 0.0, 0.0};
  for (size_t i = 0; i < 3; ++i) {
    for (size_t j = 0; j < 10; ++j) {
      dense_x_data[i * 10 + j] = (i * 10 + j) * 1.0;
      dense_y_data[i * 10 + j] = (i * 10 + j) * 1.0;
      sum[i] += (i * 10 + j) * (i * 10 + j) * 1.0;
    }
  }

  paddle::experimental::Tensor x(dense_x);
  paddle::experimental::Tensor y(dense_y);

  // 2. test API
  auto out = paddle::experimental::dot(x, y);

  // 3. check result
67 68
  ASSERT_EQ(out.dims().size(), 2);
  ASSERT_EQ(out.dims()[0], 3);
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
  ASSERT_EQ(out.numel(), 3);
  ASSERT_EQ(out.is_cpu(), true);
  ASSERT_EQ(out.type(), pten::DataType::FLOAT32);
  ASSERT_EQ(out.layout(), pten::DataLayout::NCHW);
  ASSERT_EQ(out.initialized(), true);

  auto expect_result = sum;
  auto dense_out = std::dynamic_pointer_cast<pten::DenseTensor>(out.impl());
  auto actual_result0 = dense_out->data<float>()[0];
  auto actual_result1 = dense_out->data<float>()[1];
  auto actual_result2 = dense_out->data<float>()[2];
  ASSERT_NEAR(expect_result[0], actual_result0, 1e-6f);
  ASSERT_NEAR(expect_result[1], actual_result1, 1e-6f);
  ASSERT_NEAR(expect_result[2], actual_result2, 1e-6f);
}
84 85 86

}  // namespace tests
}  // namespace paddle