forked from PaddlePaddle/Paddle-Lite
-
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.
[PaddleSpeech] Add OPs and others needed by fastspeech_2 model (Paddl…
…ePaddle#9706) * [Host] add 3 OPs: set_value, round, share_data test=develop * [Host] add expand_v2 OP registration with type kBool test=develop * [Arm] add reduce_sum OP Int64 registration and neon implement & add reduce_max OP kInt32 registration test=develop * [X86] fix bug in set_value OP test=develop * [Extra] move 2 round and share_data to extra test=develop
- Loading branch information
1 parent
6921b7d
commit b87ecf5
Showing
23 changed files
with
1,708 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,54 @@ | ||
// Copyright (c) 2019 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 "lite/kernels/host/round_compute.h" | ||
#include "lite/kernels/host/elementwise_op_func.h" | ||
|
||
namespace paddle { | ||
namespace lite { | ||
namespace kernels { | ||
namespace host { | ||
|
||
template <typename T> | ||
void RoundCompute<T>::Run() { | ||
auto& param = Param<operators::RoundParam>(); | ||
const lite::Tensor* input = param.X; | ||
lite::Tensor* output = param.Out; | ||
|
||
output->Resize(input->dims()); | ||
|
||
auto out_num = output->dims().production(); | ||
for (int i = 0; i < out_num; ++i) { | ||
output->mutable_data<T>()[i] = std::round(input->data<T>()[i]); | ||
} | ||
|
||
return; | ||
} | ||
|
||
} // namespace host | ||
} // namespace kernels | ||
} // namespace lite | ||
} // namespace paddle | ||
|
||
REGISTER_LITE_KERNEL(round, | ||
kHost, | ||
kAny, | ||
kNCHW, | ||
paddle::lite::kernels::host::RoundCompute<float>, | ||
fp32) | ||
.BindInput("X", {LiteType::GetTensorTy(TARGET(kHost), PRECISION(kFloat))}) | ||
.BindOutput("Out", | ||
{LiteType::GetTensorTy(TARGET(kHost), PRECISION(kInt32))}) | ||
.BindPaddleOpVersion("round", 1) | ||
.Finalize(); |
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,35 @@ | ||
// Copyright (c) 2019 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 "lite/core/kernel.h" | ||
#include "lite/core/op_registry.h" | ||
|
||
namespace paddle { | ||
namespace lite { | ||
namespace kernels { | ||
namespace host { | ||
|
||
template <typename T> | ||
class RoundCompute : public KernelLite<TARGET(kHost), PRECISION(kAny)> { | ||
public: | ||
using param_t = operators::RoundParam; | ||
void Run() override; | ||
virtual ~RoundCompute() = default; | ||
}; | ||
|
||
} // namespace host | ||
} // namespace kernels | ||
} // namespace lite | ||
} // namespace paddle |
Oops, something went wrong.