(self)
| 127 | |
| 128 | # |
| 129 | def is_complex(self): |
| 130 | complex_operators = [ |
| 131 | MathOperation.multiply_add_complex, |
| 132 | MathOperation.multiply_add_complex_gaussian, |
| 133 | MathOperation.multiply_add_complex_fast_f32 |
| 134 | ] |
| 135 | return self.tile_description.math_instruction.math_operation in complex_operators |
| 136 | |
| 137 | # |
| 138 | def is_mixed_input(self): |
no outgoing calls
no test coverage detected