Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
clang /
20 /
include /
llvm_offload_wrappers /
Delete
Unzip
Name
Size
Permission
Date
Action
__llvm_offload.h
1.04
KB
-rw-r--r--
2025-07-08 23:06
__llvm_offload_device.h
400
B
-rw-r--r--
2025-07-08 23:06
__llvm_offload_host.h
569
B
-rw-r--r--
2025-07-08 23:06
Save
Rename
/*===------ LLVM/Offload helpers for kernel languages (CUDA/HIP) -*- c++ -*-=== * * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. * See https://llvm.org/LICENSE.txt for license information. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception * *===-----------------------------------------------------------------------=== */ #include <stddef.h> #define __host__ __attribute__((host)) #define __device__ __attribute__((device)) #define __global__ __attribute__((global)) #define __shared__ __attribute__((shared)) #define __constant__ __attribute__((constant)) #define __managed__ __attribute__((managed)) extern "C" { typedef struct dim3 { dim3() {} dim3(unsigned x) : x(x) {} unsigned x = 0, y = 0, z = 0; } dim3; // TODO: For some reason the CUDA device compilation requires this declaration // to be present on the device while it is only used on the host. unsigned __llvmPushCallConfiguration(dim3 gridDim, dim3 blockDim, size_t sharedMem = 0, void *stream = 0); }