Zero the gradients of this array
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(array_type), | intent(inout) | :: | this |
module subroutine zero_grad(this) !! Zero the gradients of this array implicit none class(array_type), intent(inout) :: this if(associated(this%grad))then if(allocated(this%grad%val)) this%grad%val = 0.0_real32 end if end subroutine zero_grad