cutile 0.1.0

cuTile Rust lets programmers safely author and execute tile kernels directly in Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

//! Pre-built optimized GPU kernels.
//!
//! This module provides a collection of commonly used GPU kernels that are optimized
//! and ready to use.

mod _conversion;
mod _creation;

pub use _conversion::conversion;
pub use _creation::creation;