From 85598e31fb75efff7a56c9506f1ac6aeaf506f3b Mon Sep 17 00:00:00 2001 From: Sylwester Fraczek Date: Fri, 18 Nov 2022 03:38:11 +0100 Subject: [PATCH] fix onednn prelu header (#48064) --- paddle/phi/kernels/onednn/prelu_kernel.cc | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/paddle/phi/kernels/onednn/prelu_kernel.cc b/paddle/phi/kernels/onednn/prelu_kernel.cc index efe814130b..922cee98d1 100644 --- a/paddle/phi/kernels/onednn/prelu_kernel.cc +++ b/paddle/phi/kernels/onednn/prelu_kernel.cc @@ -1,13 +1,16 @@ -/* 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. */ +// 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. #include "paddle/phi/kernels/prelu_kernel.h" -- GitLab