sycl-rs 0.1.0

Rust bindings for SYCL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Copyright (C) 2026 Intel Corporation
//
// Under the MIT License or the Apache License v2.0.
// See LICENSE-MIT and LICENSE-APACHE for license information.
// SPDX-License-Identifier: MIT OR Apache-2.0
//

pub use crate::{
    context::Context,
    device::Device,
    info::{self, InfoTarget},
    kernel::{Kernel, KernelArgument, KernelArgumentList},
    platform::Platform,
    queue::Queue,
    range::{NdRange, Range},
    usmbox::{DeviceUsmBox, HostUsmBox, SharedUsmBox, UsmBox},
};