concat_op.h 1.4 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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 <string>
18
#include <utility>
19
#include <vector>
20

Y
Yi Wang 已提交
21
#include "paddle/fluid/framework/op_registry.h"
C
chengduo 已提交
22
#include "paddle/fluid/operators/math/concat_and_split.h"
23
#include "paddle/fluid/operators/utils.h"
24 25
#include "paddle/phi/kernels/concat_kernel.h"
#include "paddle/phi/kernels/funcs/concat_funcs.h"
26
#include "paddle/phi/kernels/funcs/strided_memcpy.h"
27

28 29 30
namespace paddle {
namespace operators {

31
static inline int64_t ComputeAxis(int64_t axis, int64_t rank) {
32
  PADDLE_ENFORCE_EQ(
33 34
      axis >= -rank && axis < rank,
      true,
35
      platform::errors::InvalidArgument(
36 37 38 39
          "The axis is expected to be in range of [%d, %d), but got %d",
          -rank,
          rank,
          axis));
40 41 42 43 44
  if (axis < 0) {
    axis = axis + rank;
  }
  return axis > 0 ? axis : 0;
}
45 46 47

}  // namespace operators
}  // namespace paddle