When working with tensor operations like add, multiply, and matrix multiply, the key metric is correctness. This means the output tensor values must be exactly what math says they should be. For example, adding two tensors should give a tensor where each element is the sum of the corresponding elements. Multiplying element-wise should multiply each element pair. Matrix multiplication should follow the rules of linear algebra.
Correctness matters because these operations are the building blocks of machine learning models. If the math is wrong, the model will learn wrong patterns or crash.