1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use tract_data::internal::f16;

use crate::element_wise::ElementWiseKer;


#[derive(Clone, Debug)]
pub struct SMulByScalar4;

impl ElementWiseKer<f32, f32> for SMulByScalar4 {
    fn name() -> &'static str {
        "generic"
    }

    fn alignment_items() -> usize {
        4
    }

    fn nr() -> usize {
        4
    }

    fn run(x: &mut [f32], s: f32) {
        debug_assert!(x.len() % Self::nr() == 0);
        debug_assert!(x.as_ptr() as usize % Self::alignment_bytes() == 0);
        x.iter_mut().for_each(|px| *px *= s)
    }
}

#[cfg(test)]
#[macro_use]
pub mod mul_by_scalar_f32 {
    mul_by_scalar_frame_tests!(true, f32, crate::generic::by_scalar::SMulByScalar4);
}

#[derive(Clone, Debug)]
pub struct HMulByScalar8;

impl ElementWiseKer<f16, f16> for HMulByScalar8 {
    fn name() -> &'static str {
        "generic"
    }

    fn alignment_items() -> usize {
        8
    }

    fn nr() -> usize {
        8
    }

    fn run(x: &mut [f16], s: f16) {
        debug_assert!(x.len() % Self::nr() == 0);
        debug_assert!(x.as_ptr() as usize % Self::alignment_bytes() == 0);
        x.iter_mut().for_each(|px| *px *= s)
    }
}

#[cfg(test)]
#[macro_use]
pub mod mul_by_scalar_f16 {
    use super::*;
    mul_by_scalar_frame_tests!(true, f16, crate::generic::by_scalar::HMulByScalar8);
}