MKLDNNMatrix.h 2.0 KB
Newer Older
T
tensor-tang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2017 PaddlePaddle Authors. All Rights Reserve.

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. */

#pragma once

T
tensor-tang 已提交
17 18
#include <vector>
#include "Matrix.h"
T
tensor-tang 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#include "mkldnn.hpp"
#include "paddle/parameter/Parameter.h"

namespace paddle {

static const std::map<mkldnn::memory::format, PARAM_FORMAT> PARAM_FOARMAT_MAP =
    {{mkldnn::memory::format::oi, PARAM_FORMAT_MKLDNN_OI}};

class MKLDNNMatrix;
typedef std::shared_ptr<MKLDNNMatrix> MKLDNNMatrixPtr;

/**
 * @brief MKLDNN Matrix.
 *
 */
T
tensor-tang 已提交
34
class MKLDNNMatrix : public CpuMatrix, public mkldnn::memory {
T
tensor-tang 已提交
35
public:
T
tensor-tang 已提交
36 37 38 39 40
  MKLDNNMatrix(real* data,
               size_t height,
               size_t width,
               mkldnn::memory::primitive_desc pd)
      : CpuMatrix(data, height, width, false), mkldnn::memory(pd, data) {}
T
tensor-tang 已提交
41

T
tensor-tang 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
  MKLDNNMatrix(size_t height, size_t width, mkldnn::memory::primitive_desc pd)
      : CpuMatrix(height, width, false), mkldnn::memory(pd) {
    set_data_handle(CpuMatrix::getData());
  }

  static MKLDNNMatrixPtr create(
      const MatrixPtr& m,
      mkldnn::memory::dims dims,
      mkldnn::memory::format fmt,
      mkldnn::engine& eg,
      mkldnn::memory::data_type dtype = mkldnn::memory::data_type::f32);

  /**
   * Get primitive descriptor
   */
  mkldnn::memory::primitive_desc getPD() { return this->get_primitive_desc(); }
T
tensor-tang 已提交
58

T
tensor-tang 已提交
59 60 61 62 63 64 65 66 67 68 69
  /**
   * Get memory descriptor
   */
  mkldnn::memory::desc getMD() { return getPD().desc(); }

  /**
   * Get format
   */
  int getFormat() { return getMD().data.format; }

  ~MKLDNNMatrix() {}
T
tensor-tang 已提交
70 71 72
};

}  // namespace paddle