Overloads exponentiation operator for a tensor and a scalar of type real32
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(torch_tensor), | intent(in) | :: | tensor | |||
real(kind=real32), | intent(in) | :: | power |
function torch_tensor_power_real32(tensor, power) result(output) type(torch_tensor), intent(in) :: tensor real(kind=real32), intent(in) :: power type(torch_tensor) :: output interface function torch_tensor_power_c(tensor_c, power_c) result(output_c) & bind(c, name = 'torch_tensor_power') use, intrinsic :: iso_c_binding, only : c_ptr use, intrinsic :: iso_fortran_env, only : real32 implicit none type(c_ptr), value, intent(in) :: tensor_c real(kind=real32), value, intent(in) :: power_c type(c_ptr) :: output_c end function torch_tensor_power_c end interface output%p = torch_tensor_power_c(tensor%p, power) end function torch_tensor_power_real32