unary.cc 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

15
#include "paddle/phi/infermeta/sparse/unary.h"
16

17
#include "paddle/phi/core/infermeta_utils.h"
18

19
namespace phi {
20 21
namespace sparse {

22
void IndicesInferMeta(const MetaTensor& x, MetaTensor* out) {
23 24 25 26 27
  // TODO(zhangkaihuo) Currently, we cannot get sparse_dim from tensor.
  // correct shape is: shape[0] = x.sparse_dim()
  // In the 3D point cloud model:
  // the input x is 5-D tensor, non_zero_elements is 1-D tensor
  out->set_dims({x.dims().size() - 1, -1});
28 29 30
  out->set_dtype(DataType::INT32);
  out->set_layout(DataLayout::NCHW);
}
31

32 33 34 35 36 37
void ValuesInferMeta(const MetaTensor& x, MetaTensor* out) {
  const auto& x_dims = x.dims();
  out->set_dims({-1, x_dims[x_dims.size() - 1]});
  out->set_dtype(x.dtype());
  out->set_layout(x.layout());
}
Z
zhangkaihuo 已提交
38

39
}  // namespace sparse
40
}  // namespace phi