matmul function

VARP matmul(
  1. VARP a,
  2. VARP b
)

Implementation

VARP matmul(VARP a, VARP b) => dot(a, b);