Skip to main content

dispatch_binary_op

Macro dispatch_binary_op 

Source
macro_rules! dispatch_binary_op {
    ($backend:expr, $op:ident, $a:expr, $b:expr, $result:expr) => { ... };
}
Expand description

Macro to dispatch binary operations to appropriate backend

Routes operations like add, sub, mul, div to the best available SIMD backend. Falls back to scalar implementation when a hardware backend is unavailable.