MNN/source/backend/cuda/execution/plugin/SplitGelu/splitGeLUKernel.h

33 lines
1.1 KiB
C
Raw Permalink Normal View History

2024-02-29 16:21:40 +08:00
/*
* SPDX-FileCopyrightText: Copyright (c) 1993-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* 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.
*/
#ifndef SPLITGELU_KERNEL_H
#define SPLITGELU_KERNEL_H
#include <cstdint>
#include <cuda.h>
#include <cuda_fp16.h>
#include <cuda_runtime_api.h>
#include "backend/cuda/core/CUDABackend.hpp"
using half = __half;
template <typename T>
int32_t launchSplitGeLUKernel(int32_t gridSize, int32_t nHalfHiddenSize, T const* input0, T const* input1, T* output,
float const fDivRecip, float const fAdd, float const fMul, cudaStream_t stream = 0);
#endif // SPLITGELU_KERNEL_H