Add compute module and update lib.rs to include it

This commit is contained in:
Palash Tyagi 2025-07-06 17:40:04 +01:00
parent f749b2c921
commit 6718cf5de7
2 changed files with 6 additions and 0 deletions

3
src/compute/mod.rs Normal file
View File

@ -0,0 +1,3 @@
pub mod activations;
pub mod models;

View File

@ -8,3 +8,6 @@ pub mod frame;
/// Documentation for the [`crate::utils`] module. /// Documentation for the [`crate::utils`] module.
pub mod utils; pub mod utils;
/// Documentation for the [`crate::compute`] module.
pub mod compute;