kernel_declare.h 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* 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/pten/core/kernel_registry.h"

// TODO(chenweihang) After the kernel is split into a single file,
// the kernel declare statement is automatically generated according to the
// file name of the kernel, and this header file will be removed

23 24 25 26
PT_DECLARE_KERNEL(full_like, CPU, ALL_LAYOUT);
PT_DECLARE_KERNEL(dot, CPU, ALL_LAYOUT);
PT_DECLARE_KERNEL(flatten, CPU, ALL_LAYOUT);
PT_DECLARE_KERNEL(sign, CPU, ALL_LAYOUT);
27
PT_DECLARE_KERNEL(scale, CPU, ALL_LAYOUT);
C
chentianyu03 已提交
28
PT_DECLARE_KERNEL(conj, CPU, ALL_LAYOUT);
29 30

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
31 32 33 34
PT_DECLARE_KERNEL(full_like, CUDA, ALL_LAYOUT);
PT_DECLARE_KERNEL(dot, CUDA, ALL_LAYOUT);
PT_DECLARE_KERNEL(flatten, CUDA, ALL_LAYOUT);
PT_DECLARE_KERNEL(sign, CUDA, ALL_LAYOUT);
35
PT_DECLARE_KERNEL(scale, CUDA, ALL_LAYOUT);
C
chentianyu03 已提交
36
PT_DECLARE_KERNEL(conj, CUDA, ALL_LAYOUT);
37 38 39
#endif

#ifdef PADDLE_WITH_XPU
40
PT_DECLARE_KERNEL(flatten, XPU, ALL_LAYOUT);
41
#endif