blob: a0d803ab8137430a6dcb0ace267b6a6d600b3b60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![allow(internal_features)]
#![feature(no_core, lang_items, abi_gpu_kernel)]
#![no_core]
#![no_std]
// This is needed because of #![no_core]:
#[lang = "sized"]
trait Sized {}
#[no_mangle]
extern "gpu-kernel" fn kernel() {}
|