I am using pytorch.
If I have a matrix M
of size (d1, d2)
and a vector V
of size d2
, doing M*V
gives me an output OUT
of size (d1, d2)
, where each row of M
has been multiplied by V
.
I need to do the same thing batch-wise, where the matrix M
is fixed and I have a batch of dB
vectors.
In practice, given a tensor M
of size (d1, d2)
and a tensor V
of size (dB, d2)
, I need to get as output OUT
a tensor of size (dB, d1, d2)
, so that OUT[i] = M*V[i]
.
How can I efficiently get it with pytorch?