You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
graphengine/ge/host_kernels/slice_d_kernel.cc

177 lines
6.5 KiB

/**
* Copyright 2019-2020 Huawei Technologies Co., Ltd
*
* 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 "host_kernels/slice_d_kernel.h"
#include <memory>
#include "common/fp16_t.h"
#include "common/op/ge_op_utils.h"
#include "common/types.h"
#include "framework/common/debug/ge_log.h"
#include "host_kernels/kernel_utils.h"
#include "graph/utils/type_utils.h"
#include "inc/kernel_factory.h"
namespace ge {
namespace {
const int64_t kDimMinusOne = -1;
const int64_t kDimZero = 0;
const int64_t KStrideLengthOne = 1;
const size_t kSliceDInputSize = 1;
const size_t kSliceDOutputSize = 1;
const char *const kSliceDAttrBegin = "offsets";
const char *const kSliceDAttrSize = "size";
} // namespace
Status SliceDKernel::SliceDCheck(const OpDescPtr &op_desc_ptr, const std::vector<ge::ConstGeTensorPtr> &input,
std::vector<int64_t> &begin_list, std::vector<int64_t> &size_list) {
// Check input size and output size
if ((input.size() != kSliceDInputSize) || (op_desc_ptr->GetInputsSize() != kSliceDInputSize) ||
(op_desc_ptr->GetOutputsSize() != kSliceDOutputSize)) {
GELOGW("Unexpected SliceD node, node input size: %zu, node output size: %zu, node name: %s.", input.size(),
op_desc_ptr->GetOutputsSize(), op_desc_ptr->GetName().c_str());
return PARAM_INVALID;
}
ConstGeTensorPtr x_tensor = input.at(0); // index 0 is guaranteed to be valid by input size check.
if (x_tensor == nullptr) {
GELOGW("SliceDKernel input tensor is nullptr.");
return PARAM_INVALID;
}
// Check data
if (x_tensor->GetData().size() == 0) {
GELOGW("SliceDKernel data size of input is 0, node name: %s.", op_desc_ptr->GetName().c_str());
return PARAM_INVALID;
}
// Get attr;
if (!AttrUtils::GetListInt(op_desc_ptr, kSliceDAttrBegin, begin_list)) {
GELOGW("SliceDKernel get attr begin failed, node name: %s.", op_desc_ptr->GetName().c_str());
return PARAM_INVALID;
}
if (!AttrUtils::GetListInt(op_desc_ptr, kSliceDAttrSize, size_list)) {
GELOGW("SliceDKernel get attr size failed, node name: %s.", op_desc_ptr->GetName().c_str());
return PARAM_INVALID;
}
// Check attr;
vector<int64_t> x_dims = x_tensor->GetTensorDesc().GetShape().GetDims();
size_t x_dim_size = x_dims.size();
if (x_dim_size != begin_list.size() || x_dim_size != size_list.size()) {
GELOGW("SliceDKernel rank of all shapes must be the same, input: %zu, begin: %zu, size: %zu, node name: %s.",
x_dim_size, begin_list.size(), size_list.size(), op_desc_ptr->GetName().c_str());
return PARAM_INVALID;
}
for (size_t i = 0; i < x_dim_size; i++) {
int64_t x_dim_i = x_dims[i];
int64_t begin_i = begin_list[i];
int64_t size_i = size_list[i];
if ((begin_i < kDimZero) || (begin_i > x_dim_i) || (size_i < kDimMinusOne) || (size_i > x_dim_i)) {
GELOGW("SliceDKernel dim[%zu] of attr is out of range, node name: %s.", i, op_desc_ptr->GetName().c_str());
return PARAM_INVALID;
}
}
return SUCCESS;
}
Status SliceDKernel::Compute(const OpDescPtr op_desc_ptr, const std::vector<ConstGeTensorPtr> &input,
std::vector<GeTensorPtr> &v_output) {
GELOGD("SliceDKernel in");
if (op_desc_ptr == nullptr) {
GELOGW("SliceDKernel input opdesc is nullptr.");
return NOT_CHANGED;
}
vector<int64_t> begin_list;
vector<int64_t> size_list;
if (SliceDCheck(op_desc_ptr, input, begin_list, size_list) != SUCCESS) {
GELOGW("SliceDKernel input is invalid, failed to fold node.");
return NOT_CHANGED;
}
ConstGeTensorPtr x_tensor = input.at(0); // index 0 is guaranteed to be valid by input size check.
vector<int64_t> x_dims = x_tensor->GetTensorDesc().GetShape().GetDims();
vector<int64_t> stride_list;
bool has_zero_dim = false;
for (size_t i = 0; i < x_dims.size(); i++) {
int64_t x_dim_i = x_dims[i];
int64_t begin_i = begin_list[i];
int64_t size_i = size_list[i];
if (size_i == kDimMinusOne) {
size_i = x_dim_i - begin_i;
size_list[i] = size_i;
} else if (begin_i + size_i > x_dim_i) {
GELOGW("SliceDKernel dim[%zu] of attr size is out of range, node name: %s.", i, op_desc_ptr->GetName().c_str());
return NOT_CHANGED;
}
stride_list.push_back(KStrideLengthOne);
// 0 appears in dims of input tensor or size tensor
if (size_i == kDimZero || x_dim_i == kDimZero) {
has_zero_dim = true;
}
}
auto x_data_type = x_tensor->GetTensorDesc().GetDataType();
auto output_tensor_desc = op_desc_ptr->GetOutputDesc(0);
GeTensorPtr output_ptr = MakeShared<GeTensor>(output_tensor_desc);
if (output_ptr == nullptr) {
GELOGW("Failed to fold node %s, out of memory", op_desc_ptr->GetName().c_str());
return NOT_CHANGED;
}
output_ptr->MutableTensorDesc().SetShape(GeShape(size_list));
output_ptr->MutableTensorDesc().SetDataType(x_data_type);
if (has_zero_dim) {
v_output.emplace_back(output_ptr);
GELOGI("SliceD folding kernel success, and output tensor has no data.");
return SUCCESS;
}
void *data = reinterpret_cast<void *>(const_cast<uint8_t *>(x_tensor->GetData().data()));
int64_t x_data_size = x_tensor->GetTensorDesc().GetShape().GetShapeSize();
Status ret = CheckOutputDims(size_list, op_desc_ptr);
if (ret != SUCCESS) {
4 years ago
return ret;
}
4 years ago
ret = OpUtils::SetOutputSliceData(data, x_data_size, x_data_type, x_dims, begin_list, size_list,
output_ptr.get(), stride_list);
if (ret != SUCCESS) {
GELOGW("Set output data of SliceD failed.");
return NOT_CHANGED;
}
v_output.emplace_back(output_ptr);
GELOGI("SliceD folding kernel success.");
return SUCCESS;
}
Status SliceDKernel::CheckOutputDims(const std::vector<int64_t> &output_dims, const OpDescPtr attr) {
// check dim not all less than 0
for (auto dim : output_dims) {
if (dim > 0) {
return SUCCESS;
}
}
GELOGW("all output dim <=0, can't be processed. op_name : %s", attr->GetName().c_str());
return NOT_CHANGED;
}
REGISTER_KERNEL(SLICED, SliceDKernel);
} // namespace ge