forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor flatten kernel (PaddlePaddle#12)
* refactor flatten kernel * update infershape function * fix compile bugs * fix bugs when merge * fix compiler bugs * fix bugs when run test_flatten_api * fix bugs when run test
- Loading branch information
1 parent
2309149
commit 6ce92e5
Showing
36 changed files
with
1,154 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) 2021 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 | ||
|
||
// See Note: [ How do we organize the kernel directory ] | ||
#include "paddle/tcmpt/cpu/manipulation.h" | ||
#include "paddle/tcmpt/cuda/manipulation.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// Copyright (c) 2021 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. | ||
|
||
#include "paddle/tcmpt/cpu/manipulation.h" | ||
#include "paddle/tcmpt/cpu/utils.h" | ||
#include "paddle/tcmpt/infershape/unary.h" | ||
|
||
namespace pt { | ||
|
||
template <typename T> | ||
void Flatten(const CPUContext& dev_ctx, | ||
const DenseTensor& x, | ||
int start_axis, | ||
int stop_axis, | ||
DenseTensor* out) { | ||
auto out_meta = FlattenInferShape(x.meta(), start_axis, stop_axis); | ||
pt::Copy(dev_ctx, x, out); | ||
out->mutable_meta()->lod = out_meta.lod; | ||
out->Resize(out_meta.dims); | ||
} | ||
|
||
// TODO(yuanrisheng): this kernel is for training and xshape is a Intermediate | ||
// Output Tensor, | ||
// is there a more flexible way to deal with this case? | ||
template <typename T> | ||
void FlattenWithXShape(const CPUContext& dev_ctx, | ||
const DenseTensor& x, | ||
int start_axis, | ||
int stop_axis, | ||
DenseTensor* out, | ||
DenseTensor* xshape) { | ||
Flatten<T>(dev_ctx, x, start_axis, stop_axis, out); | ||
const auto& in_dims = x.meta().dims; | ||
std::vector<int64_t> xshape_dims(in_dims.size() + 1); | ||
xshape_dims[0] = 0; | ||
for (int i = 0; i < in_dims.size(); ++i) { | ||
xshape_dims[i + 1] = in_dims[i]; | ||
} | ||
xshape->mutable_meta()->dims = paddle::framework::make_ddim(xshape_dims); | ||
xshape->mutable_meta()->lod = x.meta().lod; | ||
} | ||
|
||
} // namespace pt | ||
|
||
// TODO(chenweihang): replace by better impl | ||
PT_REGISTER_MODULE(ManipulationCPU); | ||
|
||
// TODO(yuanrisheng): "flatten_contiguous_range" is compatible with old kernel | ||
// architecture, kernel_name should be "flatten". | ||
PT_REGISTER_KERNEL("flatten_contiguous_range", | ||
CPU, | ||
NCHW, | ||
pt::Flatten, | ||
float, | ||
double, | ||
uint8_t, | ||
int8_t, | ||
int, | ||
int64_t) {} | ||
|
||
PT_REGISTER_KERNEL("flatten_contiguous_range.mid", | ||
CPU, | ||
NCHW, | ||
pt::FlattenWithXShape, | ||
float, | ||
double, | ||
uint8_t, | ||
int8_t, | ||
int, | ||
int64_t) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* Copyright (c) 2021 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 | ||
|
||
#include "paddle/tcmpt/core/dense_tensor.h" | ||
#include "paddle/tcmpt/core/kernel_registry.h" | ||
|
||
// See Note [ Why still include the fluid headers? ] | ||
#include "paddle/fluid/platform/device_context.h" | ||
|
||
namespace pt { | ||
|
||
using CPUContext = paddle::platform::CPUDeviceContext; | ||
|
||
template <typename T> | ||
void Flatten(const CPUContext& dev_ctx, | ||
const DenseTensor& x, | ||
int start_axis, | ||
int stop_axis, | ||
DenseTensor* out); | ||
|
||
} // namespace pt |
Oops, something went wrong.