backward method

void backward()

Implementation

void backward() {
  // Note: In our compile method, bTape automatically zeros gradients
  // at the very start of the tape before executing the backpropagation.
  CudaEngine.run(bTape);
}