sycl_rs/prelude.rs
1//
2// Copyright (C) 2026 Intel Corporation
3//
4// Under the MIT License or the Apache License v2.0.
5// See LICENSE-MIT and LICENSE-APACHE for license information.
6// SPDX-License-Identifier: MIT OR Apache-2.0
7//
8
9pub use crate::{
10 context::Context,
11 device::{Aspect, Device},
12 info::{self, InfoTarget},
13 kernel::{Kernel, KernelArgument, KernelArgumentList},
14 platform::Platform,
15 queue::Queue,
16 range::{NdRange, Range},
17 usmbox::{DeviceUsmBox, HostUsmBox, SharedUsmBox, UsmBox},
18};