SparseDenseDenseBMM

class src.utils.sparse.SparseDenseDenseBMM[source]

bmm (Batch Matrix Matrix) for sparse x dense -> dense. with s_t1.shape = (b, x, s), d_t2.shape = (b, s, y), the output shape is (b, x, y) This is a work around utilizing torch.mm for sparse x dense -> dense. Forward and backward options are implemented.

static backward(ctx, dm)[source]

Defines a formula for differentiating the operation.

This function is to be overridden by all subclasses.

It must accept a context ctx as the first argument, followed by as many outputs did forward() return, and it should return as many tensors, as there were inputs to forward(). Each argument is the gradient w.r.t the given output, and each returned value should be the gradient w.r.t. the corresponding input.

The context can be used to retrieve tensors saved during the forward pass. It also has an attribute ctx.needs_input_grad as a tuple of booleans representing whether each input needs gradient. E.g., backward() will have ctx.needs_input_grad[0] = True if the first input to forward() needs gradient computated w.r.t. the output.

static forward(ctx, t1, t2)[source]
Parameters
  • t1 – tensor 1

  • t2 – tensor 2

Returns

bmm result in dense