Skip to content

Commit b9c1a63

Browse files
Rename kernel_bundle module to kernel
1 parent 2fa3f90 commit b9c1a63

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

oneapi-rs/examples/kernel_launch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
use oneapi_rs::{
1010
buffer::Buffer,
11-
kernel_bundle::{KernelArgument, KernelArgumentList, NdRange},
11+
kernel::{KernelArgument, KernelArgumentList, NdRange},
1212
queue::Queue,
1313
usm::{SharedAllocator, UsmAllocator},
1414
};

oneapi-rs/src/buffer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use pin_project::pin_project;
2020

2121
use crate::{
2222
event::{Event, EventFuture},
23-
kernel_bundle::KernelArgument,
23+
kernel::KernelArgument,
2424
usm::UsmAlloc,
2525
};
2626

oneapi-rs/src/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
use oneapi_rs_sys::{context::ffi, kernel_bundle, types::ffi::DevicePtr};
1010

11-
use crate::{device::Device, kernel_bundle::SourceKernelBundle};
11+
use crate::{device::Device, kernel::SourceKernelBundle};
1212

1313
/// A context represents the runtime data structures and state required by a SYCL backend API
1414
/// to interact with a group of devices associated with a platform.

oneapi-rs/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub mod context;
1111
pub mod device;
1212
pub mod event;
1313
pub mod info;
14-
pub mod kernel_bundle;
14+
pub mod kernel;
1515
pub mod platform;
1616
pub mod queue;
1717
pub mod usm;

oneapi-rs/src/queue.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use crate::{
1414
context::Context,
1515
device::Device,
1616
event::Event,
17-
kernel_bundle::{Kernel, KernelArgumentList, NdRange, ValidDimension},
17+
kernel::{Kernel, KernelArgumentList, NdRange, ValidDimension},
1818
usm::{HostAllocator, SharedAllocator, UsmAlloc, UsmAllocator},
1919
};
2020

0 commit comments

Comments
 (0)