Skip to content

Commit

Permalink
Added sigmoidal
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed Jun 15, 2024
1 parent 5c88148 commit faed1c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/image_to_sigmoidal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ use crate::image::ImageConfiguration;
target_feature = "neon"
))]
use crate::neon::neon_image_to_sigmoidal;
#[cfg(all(
any(target_arch = "x86_64", target_arch = "x86"),
target_feature = "sse4.1"
))]
use crate::sse::sse_image_to_sigmoidal_row;
use crate::Rgb;

Expand Down
4 changes: 4 additions & 0 deletions src/sigmoidal_to_image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ use crate::image::ImageConfiguration;
target_feature = "neon"
))]
use crate::neon::neon_from_sigmoidal_row;
#[cfg(all(
any(target_arch = "x86_64", target_arch = "x86"),
target_feature = "sse4.1"
))]
use crate::sse::sse_from_sigmoidal_row;
use crate::{Rgb, Sigmoidal};

Expand Down

0 comments on commit faed1c6

Please sign in to comment.