Skip to content

Commit

Permalink
modify access for conv and op to be pub to allow external packages to…
Browse files Browse the repository at this point in the history
… have custom backends (huggingface#1986)
  • Loading branch information
tomsanbear authored Apr 1, 2024
1 parent b20acd6 commit 308ea07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions candle-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 308ea07

Please sign in to comment.