lookup_table_dequant_op.h 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
/* 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. */

#pragma once

#include <string>
#include <vector>

#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/selected_rows.h"
#include "paddle/fluid/framework/var_type_traits.h"
#include "paddle/fluid/operators/math/blas.h"

#ifdef PADDLE_WITH_DISTRIBUTE
#include "paddle/fluid/operators/distributed/parameter_prefetch.h"
#endif

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;
using LoDTensor = framework::LoDTensor;
using SelectedRows = framework::SelectedRows;
using DDim = framework::DDim;

template <typename T>
void dequant(const unsigned char *in, T *out, float min, float max,
             int emb_size, int pow_2_bits) {
  float scale = (max - min) / pow_2_bits;
  for (int i = 0; i < emb_size; ++i) {
    T x = scale * static_cast<int>(in[i]) + min;
    out[i] = x;
  }
}

constexpr int64_t kNoPadding = -1;

template <typename T>
class LookupTableDequantKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &context) const override {
    auto *ids_t = context.Input<LoDTensor>("Ids");      // int tensor
    auto *output_t = context.Output<LoDTensor>("Out");  // float tensor
    auto *table_var = context.InputVar("W");

    auto id_name = context.InputNames("Ids").front();
    auto embedding_name = context.InputNames("W").front();
    auto out_name = context.OutputNames("Out").front();

    int64_t padding_idx = context.Attr<int64_t>("padding_idx");
    auto *ids = ids_t->data<int64_t>();
    int64_t ids_numel = ids_t->numel();

    PADDLE_ENFORCE_GE(
        table_var->Type(), framework::VarTypeTrait<LoDTensor>::kId,
        platform::errors::InvalidArgument("lookup table must be LodTensor"));
    auto *table_t = context.Input<LoDTensor>("W");
    int64_t row_number = table_t->dims()[0];
    int64_t quant_number = table_t->dims()[1];
    int64_t row_width = (quant_number - 2) * 4;

    auto *table = table_t->data<float>();
    auto *output = output_t->mutable_data<T>(context.GetPlace());
    int pow_2_bits = static_cast<int>(pow(2, 8));
    for (int64_t i = 0; i < ids_numel; ++i) {
      if (padding_idx != kNoPadding && ids[i] == padding_idx) {
        memset(output + i * row_width, 0, row_width * sizeof(T));
      } else {
        PADDLE_ENFORCE_LT(
            ids[i], row_number,
            platform::errors::InvalidArgument(
                "Variable value (input) of OP(fluid.layers.embedding) "
                "expected >= 0 and < %ld, but got %ld. Please check input "
                "value.",
                row_number, ids[i]));
        PADDLE_ENFORCE_GE(
            ids[i], 0,
            platform::errors::InvalidArgument(
                "Variable value (input) of OP(fluid.layers.embedding) "
                "expected >= 0 and < %ld, but got %ld. Please check input "
                "value.",
                row_number, ids[i]));
        float min = *(table + ids[i] * quant_number);
        float max = *(table + ids[i] * quant_number + 1);
        int offset = ids[i] * quant_number + 2;
        const unsigned char *tensor_buf =
            reinterpret_cast<const unsigned char *>(table + offset);
        dequant(tensor_buf, output + i * row_width, min, max, row_width,
                pow_2_bits);
      }
    }
  }
};

}  // namespace operators
}  // namespace paddle