// binary operations are those that the indexes of both cells have to be matched
 public static void performBinaryIgnoreIndexes(
     MatrixValue value1, MatrixValue value2, MatrixValue valueOut, BinaryOperator op)
     throws DMLRuntimeException {
   value1.binaryOperations(op, value2, valueOut);
 }