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.
52 lines
2.0 KiB
52 lines
2.0 KiB
8 years ago
|
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
|
||
|
|
||
|
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 "paddle/framework/lod_tensor.h"
|
||
|
|
||
|
#include <glog/logging.h>
|
||
|
|
||
|
namespace paddle {
|
||
|
namespace framework {
|
||
|
|
||
|
LODTensor LODTensor::SliceShared(size_t level_begin, size_t level_end) const {
|
||
|
PADDLE_ENFORCE(HasLOD(), "has no LOD info, can't be sliced.");
|
||
|
auto new_lod = details::SliceLOD(*lod_start_pos_, level_begin, level_end);
|
||
|
// slice levels just need to update LOD info, each level will contains the
|
||
|
// whole tensor_, so no need to modify tensor_.
|
||
|
return LODTensor(tensor_, new_lod);
|
||
|
}
|
||
|
|
||
|
LODTensor LODTensor::SliceShared(size_t level, size_t elem_begin,
|
||
|
size_t elem_end) const {
|
||
|
PADDLE_ENFORCE(HasLOD(), "has no LOD info, can't be sliced.");
|
||
|
PADDLE_ENFORCE(level < NumLevels(), "level [%d] out of range [%d]", level,
|
||
|
NumLevels());
|
||
|
PADDLE_ENFORCE(elem_begin < NumElements(level),
|
||
|
"element begin [%d] out of range [%d]", elem_begin,
|
||
|
NumElements(level));
|
||
|
PADDLE_ENFORCE(elem_end < NumElements(level) + 1,
|
||
|
"element end [%d] out of range [%d]", elem_end,
|
||
|
NumElements(level));
|
||
|
|
||
|
auto new_lod = details::SliceLOD(*lod_start_pos_, level, elem_begin, elem_end,
|
||
|
true /*tensor_shared*/);
|
||
|
|
||
|
// slice elements just need to update LOD info, because offsets are not
|
||
|
// changed, so the original tensor_ can be reused.
|
||
|
return LODTensor(tensor_, new_lod);
|
||
|
}
|
||
|
|
||
|
} // namespace framework
|
||
|
} // namespace paddle
|