Skip to content

Commit

Permalink
Making ToDtypeKernel pub (#868)
Browse files Browse the repository at this point in the history
  • Loading branch information
coreylowman committed Sep 14, 2023
1 parent 9c528eb commit 2e5116c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/tensor_ops/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,12 +269,11 @@ pub use stddev_to::StddevTo;
pub use sub::{sub, TrySub};
pub use sum_to::SumTo;
pub use tanh::tanh;
pub use to_dtype::to_dtype;
pub use to_dtype::{to_dtype, ToDtypeKernel};
pub use tri::{lower_tri, upper_tri};
pub use upscale2d::{Bilinear, GenericUpscale2D, NearestNeighbor, TryUpscale2D, UpscaleMethod};
pub use var_to::VarTo;

pub(crate) use to_dtype::ToDtypeKernel;
pub(crate) use upscale2d::Upscale2DKernel;

#[cfg(feature = "nightly")]
Expand Down

0 comments on commit 2e5116c

Please sign in to comment.