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

#include <algorithm>
#include <map>
#include <random>
#include <string>
19

20 21 22 23 24 25 26 27
#include "gtest/gtest.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/operator.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/place.h"
28
#include "paddle/phi/core/kernel_registry.h"
29

30
USE_OP_ITSELF(elementwise_add);
31
USE_OP_DEVICE_KERNEL(elementwise_add, MKLDNN);
32
USE_OP_ITSELF(elementwise_mul);
33
USE_OP_DEVICE_KERNEL(elementwise_mul, MKLDNN);
34
USE_OP_ITSELF(relu);
35
PD_DECLARE_KERNEL(relu, OneDNN, ONEDNN);
36
USE_OP_ITSELF(softmax);
37
USE_OP_DEVICE_KERNEL(softmax, MKLDNN);
H
hong 已提交
38
USE_OP_ITSELF(conv2d);
39
USE_OP_DEVICE_KERNEL_WITH_CUSTOM_TYPE(conv2d, MKLDNN, FP32);
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

namespace paddle {
namespace operators {

struct InputVars {
  std::string name;
  framework::LoDTensor *tensor;
};

class CacheTester {
 public:
  CacheTester() {
    // Clear oneDNN cache
    auto &pool = platform::DeviceContextPool::Instance();
    platform::CPUPlace place;
    onednn_dev_ctx_ =
        dynamic_cast<platform::MKLDNNDeviceContext *>(pool.Get(place));
57
    onednn_dev_ctx_->ResetBlobMap(nullptr);
58 59
  }

H
hong 已提交
60
  bool Analyze(uint16_t num_entries) {
61 62 63 64 65 66 67 68 69
    //  Number of created objects in cache should be as expected (num_entries)
    return onednn_dev_ctx_->GetCachedObjectsNumber() == num_entries;
  }

 private:
  platform::MKLDNNDeviceContext *onednn_dev_ctx_;
};

template <typename T>
70 71 72 73
void RunOperator(const platform::Place &place,
                 const std::string &op_type,
                 const framework::DDim &dims,
                 const std::string &first_input) {
74 75
  framework::Scope scope;

76 77
  std::map<const std::string, int> num_inputs = {{"softmax", 1},
                                                 {"relu", 1},
78
                                                 {"conv2d", 2},
79 80
                                                 {"elementwise_add", 2},
                                                 {"elementwise_mul", 2}};
81

82 83 84 85
  std::string first_input_var_name = (op_type == "conv2d") ? "Input" : "X";
  std::string second_input_var_name = (op_type == "conv2d") ? "Filter" : "Y";
  std::string output_var_name = (op_type == "conv2d") ? "Output" : "Out";
  std::string output_name = "output";
86 87 88

  std::vector<InputVars> input_names = {
      {first_input, scope.Var(first_input)->GetMutable<framework::LoDTensor>()},
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
      {"x1",
       num_inputs[op_type] > 1
           ? scope.Var("x1")->GetMutable<framework::LoDTensor>()
           : nullptr},
      {"x2",
       num_inputs[op_type] > 2
           ? scope.Var("x2")->GetMutable<framework::LoDTensor>()
           : nullptr},
      {"x3",
       num_inputs[op_type] > 3
           ? scope.Var("x3")->GetMutable<framework::LoDTensor>()
           : nullptr},
      {"x4",
       num_inputs[op_type] > 4
           ? scope.Var("x4")->GetMutable<framework::LoDTensor>()
           : nullptr}};
105 106 107 108 109 110
  auto *y = scope.Var(output_name)->GetMutable<framework::LoDTensor>();

  // Initialize input data
  std::uniform_real_distribution<T> dist(static_cast<T>(10.0),
                                         static_cast<T>(20.0));
  std::mt19937 engine;
111
  size_t numel = static_cast<size_t>(phi::product(dims));
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
  for (int i = 0; i < num_inputs[op_type]; ++i) {
    input_names[i].tensor->Resize(dims);
    auto data_ptr = input_names[i].tensor->mutable_data<T>(place);
    for (size_t i = 0; i < numel; ++i) {
      data_ptr[i] = dist(engine);
    }
  }

  // Initialize output
  y->Resize(dims);
  auto y_ptr = y->mutable_data<T>(place);
  for (size_t i = 0; i < numel; ++i) {
    y_ptr[i] = static_cast<T>(0);
  }

  auto &pool = platform::DeviceContextPool::Instance();

129 130 131 132 133 134 135 136 137 138 139 140
  auto op = num_inputs[op_type] > 1
                ? framework::OpRegistry::CreateOp(
                      op_type,
                      {{first_input_var_name, {first_input}},
                       {second_input_var_name, {"x1"}}},
                      {{output_var_name, {output_name}}},
                      {{"use_mkldnn", {true}}})
                : framework::OpRegistry::CreateOp(
                      op_type,
                      {{first_input_var_name, {first_input}}},
                      {{output_var_name, {output_name}}},
                      {{"use_mkldnn", {true}}});
141 142 143 144 145

  op->Run(scope, place);
  pool.Get(place)->Wait();
}

146 147
TEST(test_conv2d_reuse_cache, cpu_place) {
  framework::DDim dims({1, 16, 32, 64});
148 149
  platform::CPUPlace p;
  CacheTester ct;
150 151
  RunOperator<float>(p, "conv2d", dims, "input_signal");
  RunOperator<float>(p, "conv2d", dims, "input_signal");
152 153
  PADDLE_ENFORCE_EQ(ct.Analyze(9),
                    true,
154
                    platform::errors::InvalidArgument(
155
                        "Invalid number of cached oneDNN objects"));
156 157
}

158 159
TEST(test_conv2d_noreuse_cache, cpu_place) {
  framework::DDim dims({1, 16, 32, 64});
160 161
  platform::CPUPlace p;
  CacheTester ct;
162 163
  RunOperator<float>(p, "conv2d", dims, "input_signal");
  RunOperator<float>(p, "conv2d", dims, "input_signal2");
164 165
  PADDLE_ENFORCE_EQ(ct.Analyze(18),
                    true,
166
                    platform::errors::InvalidArgument(
167
                        "Invalid number of cached oneDNN objects"));
168 169 170 171
}

}  // namespace operators
}  // namespace paddle