brintos

brintos / llvm-project-archived public Read only

0
0
Text · 569 B · 160289d Raw
16 lines · c
1/*===------ LLVM/Offload helpers for kernel languages (CUDA/HIP) -*- c++ -*-===2 *3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4 * See https://llvm.org/LICENSE.txt for license information.5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6 *7 *===-----------------------------------------------------------------------===8 */9 10#include "__llvm_offload.h"11 12extern "C" {13unsigned llvmLaunchKernel(const void *func, dim3 gridDim, dim3 blockDim,14                          void **args, size_t sharedMem = 0, void *stream = 0);15}16