(&self)
| 197 | } |
| 198 | |
| 199 | pub fn is_broadcasting_called(&self) -> bool { |
| 200 | matches!( |
| 201 | self, |
| 202 | Operation::Add |
| 203 | | Operation::Subtract |
| 204 | | Operation::Multiply |
| 205 | | Operation::Matmul |
| 206 | | Operation::Gemm(_, _) |
| 207 | | Operation::MixedMultiply |
| 208 | | Operation::Stack(_) |
| 209 | ) |
| 210 | } |
| 211 | |
| 212 | pub fn is_mpc_compiled(&self) -> bool { |
| 213 | matches!( |
no outgoing calls
no test coverage detected