modify access for conv and op to be pub to allow external packages to have custom backends (#1986)

This commit is contained in:
Thomas Santerre
2024-04-01 11:44:49 -04:00
committed by GitHub
parent b20acd622c
commit 308ea070ed

View File

@ -37,7 +37,7 @@
mod accelerate;
pub mod backend;
pub mod backprop;
mod conv;
pub mod conv;
mod convert;
pub mod cpu;
pub mod cpu_backend;
@ -57,7 +57,7 @@ pub mod metal_backend;
#[cfg(feature = "mkl")]
mod mkl;
pub mod npy;
mod op;
pub mod op;
pub mod pickle;
pub mod quantized;
pub mod safetensors;