/* 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. */ #include "matrix_bit_code.h" namespace paddle { namespace operators { namespace math { /** * CodeTable class should support 3 functions: * * size_t size() * return the number of codes * * int getMaxCodeLength() * return the maximal code length * * Code operator()(size_t i) * return the i-th code. Code class is descriebed below. * * Code class should support 3 functions: * * int getLength() * return the length of the code * * bool calcIndex(int bit) * bit ranges from 0 to getLength() - 1 * return the index for the (1+bit) level parent * * bool calcBit(int bit) * return true if the bit level parent is the right child of (1+bit) level * parent * */ /* for i: for j < codeLength: op(a(i, j), b(0, index(i, j))) */ template static void AddByBitCodeT(Op op, CodeTable code_table, const framework::Tensor& codes, framework::Tensor& tmat, const framework::Tensor& vec) { size_t num_classes = code_table.size(); size_t max_code_length = code_table.get_max_code_length(); size_t num_sample = tmat.dims()[0]; size_t width = vec.dims()[1]; for (size_t i = 0; i < num_sample; ++i) { auto code = code_table(codes.data()[i]); int code_length = code.get_length(); for (int j = 0; j < code_length; + j) { size_t index = code.calc_index(j); op(tmat.data()[i * width + j], vec.data()[index]); } } } template void AddByBitCode(size_t num_classes, const framework::Tensor& codes, framework::Tensor& tmat, const framework::Tensor& vec) { auto op = [](T& t, T& v) { t += v; }; AddByBitCodeT(op, SimpleCodeTable(num_classes), codes, tmat, vec); } template void AddByBitCodeGrad(size_t num_classes, const framework::Tensor& codes, const framework::Tensor& tmat, framework::Tensor& vec) { auto op = [](T& t, T& v) { v += t; }; AddByBitCode(op, SimpleCodeTable(num_classes), codes, tmat, vec); } template void SumByBitCodeT(CodeTable code_table, const framework::Tensor& codes, framework::Tensor& tmat, const framework::Tensor& sum, const T& scale_sum) { size_t max_code_length = code_table.get_max_code_length(); size_t num_samples = tmat.dims()[0]; size_t o_width = tmat.dims()[1]; for (size_t i = 0; i < num_samples; ++i) { T sm = 0; auto code = code_table(codes.data()[i]); int code_length = code.get_length(); for (int j = 0; j < code_length; ++j) { if (code.calc_bit(j)) { sm += tmat.data()[i * o_width + j]; } } sum.data()[i] = scale_sum * sm; } } /* For j < codeLength: sum(i, 0) = \sum_j bit(i, j) * input(i, j) */ template void SumByBitCode(size_t num_classes, const framework::Tensor& codes, framework::Tensor& tmat, framework::Tensor& sum, T scale_sum) { SumByBitCodeT(SimpleCodeTable(num_classes), codes, tmat, scale_sum); } template void MulByBitCodeT(Op op, CodeTable code_table, const framework::Tensor& codes, framework::Tensor& tmat, framework::Tensor& weight, framework::Tensor& input) { size_t num_classes = code_table.size(); size_t max_code_length = code_table.get_max_code_length(); size_t num_samples = tmat.dims()[0]; size_t input_dim = input.dims()[1]; size_t o_width = tmat.dims()[1]; for (size_t i = 0; i < num_samples; ++i) { auto code = code_table(codes.data()[i]); int code_length = code.get_length(); for (int j = 0; j < code_length; ++j) { size_t index = code.calc_index(j); op(tmat.data()[i * o_width + j], weight.data() + index * weight.dims()[1], input.data() + i * input.dims()[1], input_dim); } } } template void MulByBitCode(size_t num_classes, const framework::Tensor& codes, framework::Tensor& tmat, const framework::Tensor& weight, const framework::Tensor& input) { auto op = [](T& t, const T* weight_row, const T* input_row, size_t input_dim) { T sum = 0; for (size_t k = 0; k < input_dim; ++k) { sum += weight_row[k] * input_row[k]; } t += sum; }; MulByBitCodeT(op, SimpleCodeTable(num_classes), codes, tmat, weight, input); } template void MulByBitCodeGradWeight(size_t num_classes, const framework::Tensor& codes, const framework::Tensor& tmat, framework::Tensor& weight, const framework::Tensor& input) { auto op = [](const T t, T* weight_row, const T* input_row, size_t input_dim) { for (size_t k = 0; k < input_dim; ++k) { weight_row[k] += t * input_row[k]; } }; MulByBitCodeT(op, SimpleCodeTable(num_classes), codes, tmat, weight, input); } template void MulByBitCodeGradError(size_t num_classes, const framework::Tensor& codes, const framework::Tensor& tmat, const framework::Tensor& weight, framework::Tensor& input) { auto op = [](const T t, const T* weight_row, T* input_row, size_t input_dim) { for (size_t k = 0; k < input_dim; ++k) { input_row[k] += t * weight_row[k]; } }; MulByBitCodeT(op, SimpleCodeTable(num_classes), codes, tmat, weight, input); } template void SubByBitCodeT(CodeTable code_table, const framework::Tensor& codes, framework::Tensor& tmat) { size_t max_code_length = code_table.get_max_code_length(); size_t num_samples = tmat.dims()[0]; size_t o_width = tmat.dims()[1]; for (size_t i = 0; i < num_samples; ++i) { auto code = code_table(codes.data()[i]); int code_length = code.get_length(); for (int j = 0; j < code_length; ++j) { if (code.calc_bit(j)) { tmat.data()[i * o_width + j] -= 1; } } } } template void SubByBitCode(size_t num_classes, const framework::Tensor& codes, framework::Tensor& tmat) { SubByBitCodeT(SimpleCodeTable(num_classes), codes, tmat); } } // namespace math } // namespace operators } // namespace paddle