Skip to content

Commit

Permalink
fix bounds again
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Jan 6, 2025
1 parent 153c369 commit 1c95d43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion linalg/src/frame/reduce/softmax.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@ pub mod test {
};
}

pub fn test_softmax_l2<K: MapReduceKer<T, T>, T: LADatum + Float>(
pub fn test_softmax_l2<K: MapReduceKer<T, T>, T>(
values: &[f32],
) -> TestCaseResult
where
T: LADatum + Float + AsPrimitive<f32>,
f32: AsPrimitive<T>,
{
use crate::generic::reduce::softmax_l2::fast_compact_exp_f32;
Expand Down

0 comments on commit 1c95d43

Please sign in to comment.