diagonal_kernel.h 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright (c) 2022 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

17
#include "paddle/phi/core/dense_tensor.h"
18
#include "paddle/phi/infermeta/unary.h"
19

20
namespace phi {
21

22 23 24 25 26 27 28 29 30 31 32 33 34 35
/**
 * @brief Return a partial view of input with the its diagonal elements
 *        of the input tensor. The behavior of this operator is similar to
 *        how `numpy.diagonal` works.
 * @param  ctx     device context
 * @param  x       the input tensor, from which the diagonals are taken
 * @param  offset  offset of the diagonal from the main diagonal. Can be both
 *                 positive and negative
 * @param  axis1   the first axis of the 2-D planes from which the diagonals
 *                 should be taken. Can be either positive or negative
 * @param  axis2   the second axis of the 2-D planes from which the diagonals
 *                 should be taken. Can be either positive or negative
 * @param  out     the partial view of input with the its diagonal elements
 */
36 37 38 39 40 41 42
template <typename T, typename Context>
void DiagonalKernel(const Context& dev_ctx,
                    const DenseTensor& x,
                    int offset,
                    int axis1,
                    int axis2,
                    DenseTensor* out);
43 44 45 46 47 48 49 50 51 52 53 54 55

template <typename T, typename Context>
DenseTensor Diagonal(const Context& dev_ctx,
                     const DenseTensor& x,
                     int offset,
                     int axis1,
                     int axis2) {
  DenseTensor dense_out;
  MetaTensor meta_out(&dense_out);
  DiagonalInferMeta(x, offset, axis1, axis2, &meta_out);
  DiagonalKernel<T, Context>(dev_ctx, x, offset, axis1, axis2, &dense_out);
  return dense_out;
}
56
}  // namespace phi