softmax.h 2.5 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
/* Copyright (c) 2023 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 "paddle/phi/core/ddim.h"
#include "paddle/phi/core/tensor_utils.h"

namespace phi {
namespace funcs {
namespace sparse {

template <typename IntT>
inline void GetPoolsSoftmax(const DenseTensor& indices,
                            const std::vector<IntT>& sizes,
                            const int dim,
                            std::map<IntT, std::vector<IntT>>* pools) {
  auto ndim = indices.dims()[0];
  auto nnz = indices.dims()[1];
  std::vector<IntT> strides(ndim, 1);

  if (ndim > 1) {
    for (IntT i = ndim - 2; i >= 0; i--) {
      strides[i] = strides[i + 1] * (i + 1 == dim ? 1 : sizes[i + 1]);
    }
  }

  auto* indices_data = indices.data<IntT>();
  for (IntT i = 0; i < nnz; i++) {
    IntT pool_index = 0;
    for (IntT j = 0; j < ndim; j++) {
      if (j == dim) continue;
      pool_index += strides[j] * indices_data[j * nnz + i];
    }

    if (pools->find(pool_index) == pools->end()) {
      std::vector<IntT> vec;
      (*pools)[pool_index] = vec;
    }
    (*pools)[pool_index].push_back(i);
  }
}

template <typename IntT>
inline std::vector<IntT> GetOffsets(const DenseTensor& indices,
                                    const std::vector<IntT>& sizes,
                                    const int dim) {
  auto ndim = indices.dims()[0];
  auto nnz = indices.dims()[1];
  std::vector<IntT> offsets(nnz);
  std::vector<IntT> strides(ndim, 1);
  auto indices_ptr = indices.data<IntT>();

  if (ndim > 1) {
    for (IntT i = ndim - 2; i >= 0; i--) {
      strides[i] = strides[i + 1] * sizes[i + 1];
    }
  }

  for (int i = 0; i < nnz; i++) {
    IntT acc = 0;
    for (int j = 0; j < ndim; j++) {
      auto indices_cur = indices_ptr + j * nnz + i;
      auto stride = strides[j];
      if (j != dim) {
        acc += stride * (*indices_cur);
      }
    }
    offsets[i] = acc;
  }

  return offsets;
}

}  // namespace sparse
}  // namespace funcs
}  // namespace phi