kernel_key.cc 1.9 KB
Newer Older
T
tensor-tang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2018 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 "paddle/fluid/operators/jit/kernel_key.h"
16
#include <xxhash.h>  // XXH64: 13.8 GB/s
T
tensor-tang 已提交
17
#include "paddle/fluid/platform/enforce.h"
T
tensor-tang 已提交
18 19 20 21 22 23

namespace paddle {
namespace operators {
namespace jit {

template <>
24
int64_t JitCodeKey<int>(const int& d) {
T
tensor-tang 已提交
25 26 27
  return d;
}

28
template <>
29
int64_t JitCodeKey<int64_t>(const int64_t& d) {
30 31 32
  return d;
}

T
tensor-tang 已提交
33
template <>
34 35
int64_t JitCodeKey<gru_attr_t>(const gru_attr_t& attr) {
  return XXH64(&attr, sizeof(gru_attr_t), 0);
T
tensor-tang 已提交
36
}
37 38

template <>
39 40 41 42 43
int64_t JitCodeKey<lstm_attr_t>(const lstm_attr_t& attr) {
  int keys[5] = {
      attr.d, static_cast<int>(attr.act_gate), static_cast<int>(attr.act_cand),
      static_cast<int>(attr.act_cell), static_cast<int>(attr.use_peephole)};
  return XXH64(keys, sizeof(int) * 5, 0);
44 45
}

T
tensor-tang 已提交
46
template <>
47 48 49
int64_t JitCodeKey<seq_pool_attr_t>(const seq_pool_attr_t& attr) {
  int keys[2] = {attr.w, static_cast<int>(attr.type)};
  return XXH64(keys, sizeof(int) * 2, 0);
T
tensor-tang 已提交
50 51
}

52
template <>
53 54
int64_t JitCodeKey<matmul_attr_t>(const matmul_attr_t& attr) {
  return XXH64(&attr, sizeof(int) * 3, 0);  // m, n, k
55 56
}

57
template <>
58
int64_t JitCodeKey<emb_seq_pool_attr_t>(const emb_seq_pool_attr_t& attr) {
59 60 61
  return attr.table_width;
}

62
template <>
63
int64_t JitCodeKey<sgd_attr_t>(const sgd_attr_t& attr) {
64 65 66
  return attr.grad_width;
}

T
tensor-tang 已提交
67 68 69
}  // namespace jit
}  // namespace operators
}  // namespace paddle