@@ -120,7 +120,7 @@ module stdlib_specialfunctions
120120 interface leaky_relu
121121 !! Version: experimental
122122 !!
123- !! Leaky Rectified linear unit function
123+ !! leaky Rectified linear unit function
124124 !> ([Specification](../page/specs/stdlib_specialfunctions.html#leaky_relu))
125125 #:for rk, rt in REAL_KINDS_TYPES
126126 elemental module function leaky_relu_${rk}$( x , a ) result( y )
@@ -135,7 +135,7 @@ module stdlib_specialfunctions
135135 interface leaky_relu_grad
136136 !! Version: experimental
137137 !!
138- !! Gradient of the Leaky Rectified linear unit function
138+ !! Gradient of the leaky Rectified linear unit function
139139 !> ([Specification](../page/specs/stdlib_specialfunctions.html#leaky_relu_grad))
140140 #:for rk, rt in REAL_KINDS_TYPES
141141 elemental module function leaky_relu_grad_${rk}$( x , a ) result( y )
@@ -341,19 +341,19 @@ module stdlib_specialfunctions
341341 end interface
342342 public :: tanh_grad
343343
344- interface Softmax
344+ interface softmax
345345 !! Version: experimental
346346 !!
347- !! Softmax function. Available for ranks 1 to 4
348- !> ([Specification](../page/specs/stdlib_specialfunctions.html#Softmax ))
347+ !! softmax function. Available for ranks 1 to 4
348+ !> ([Specification](../page/specs/stdlib_specialfunctions.html#softmax ))
349349 #:for rk, rt in REAL_KINDS_TYPES
350- pure module function Softmax_r1_ ${rk}$( x , dim ) result( y )
350+ pure module function softmax_r1_ ${rk}$( x , dim ) result( y )
351351 ${rt}$, intent(in) :: x(:)
352352 ${rt}$ :: y(size(x))
353353 integer, intent(in), optional :: dim
354354 end function
355355 #:for rank in RANKS
356- pure module function Softmax_r ${rank}$_${rk}$( x , dim ) result( y )
356+ pure module function softmax_r ${rank}$_${rk}$( x , dim ) result( y )
357357 ${rt}$, intent(in) :: x${ranksuffix(rank)}$
358358 ${rt}$ :: y${shape('x', rank)}$
359359 integer, intent(in), optional :: dim
@@ -363,77 +363,77 @@ module stdlib_specialfunctions
363363 end interface
364364 public :: softmax
365365
366- interface Softmax_grad
366+ interface softmax_grad
367367 !! Version: experimental
368368 !!
369369 !! Gradient of the softmax function. Available for ranks 1 to 4
370- !> ([Specification](../page/specs/stdlib_specialfunctions.html#Softmax_grad ))
370+ !> ([Specification](../page/specs/stdlib_specialfunctions.html#softmax_grad ))
371371 #:for rk, rt in REAL_KINDS_TYPES
372- pure module function Softmax_grad_r1_ ${rk}$( x , dim ) result( y )
372+ pure module function softmax_grad_r1_ ${rk}$( x , dim ) result( y )
373373 ${rt}$, intent(in) :: x(:)
374374 ${rt}$ :: y(size(x))
375375 integer, intent(in), optional :: dim
376376 end function
377377 #:for rank in RANKS
378- pure module function Softmax_grad_r ${rank}$_${rk}$( x , dim ) result( y )
378+ pure module function softmax_grad_r ${rank}$_${rk}$( x , dim ) result( y )
379379 ${rt}$, intent(in) :: x${ranksuffix(rank)}$
380380 ${rt}$ :: y${shape('x', rank)}$
381381 integer, intent(in), optional :: dim
382382 end function
383383 #:endfor
384384 #:endfor
385385 end interface
386- public :: Softmax_grad
386+ public :: softmax_grad
387387
388- interface LogSoftmax
388+ interface logsoftmax
389389 !! Version: experimental
390390 !!
391- !! Softmax function. Available for ranks 1 to 4
392- !> ([Specification](../page/specs/stdlib_specialfunctions.html#LogSoftmax ))
391+ !! softmax function. Available for ranks 1 to 4
392+ !> ([Specification](../page/specs/stdlib_specialfunctions.html#logsoftmax ))
393393 #:for rk, rt in REAL_KINDS_TYPES
394- pure module function LogSoftmax_r1_ ${rk}$( x, dim ) result( y )
394+ pure module function logsoftmax_r1_ ${rk}$( x, dim ) result( y )
395395 ${rt}$, intent(in) :: x(:)
396396 ${rt}$ :: y(size(x))
397397 integer, intent(in), optional :: dim
398398 end function
399399 #:for rank in RANKS
400- pure module function LogSoftmax_r ${rank}$_${rk}$( x , dim ) result( y )
400+ pure module function logsoftmax_r ${rank}$_${rk}$( x , dim ) result( y )
401401 ${rt}$, intent(in) :: x${ranksuffix(rank)}$
402402 ${rt}$ :: y${shape('x', rank)}$
403403 integer, intent(in), optional :: dim
404404 end function
405405 #:endfor
406406 #:endfor
407407 end interface
408- public :: LogSoftmax
408+ public :: logsoftmax
409409
410- interface Softplus
410+ interface softplus
411411 !! Version: experimental
412412 !!
413- !! Softplus function
414- !> ([Specification](../page/specs/stdlib_specialfunctions.html#Softplus ))
413+ !! softplus function
414+ !> ([Specification](../page/specs/stdlib_specialfunctions.html#softplus ))
415415 #:for rk, rt in REAL_KINDS_TYPES
416- elemental module function Softplus_ ${rk}$( x ) result( y )
416+ elemental module function softplus_ ${rk}$( x ) result( y )
417417 ${rt}$, intent(in) :: x
418418 ${rt}$ :: y
419419 end function
420420 #:endfor
421421 end interface
422- public :: Softplus
422+ public :: softplus
423423
424- interface Softplus_grad
424+ interface softplus_grad
425425 !! Version: experimental
426426 !!
427427 !! Gradient of the softplus function
428- !> ([Specification](../page/specs/stdlib_specialfunctions.html#Softplus_grad ))
428+ !> ([Specification](../page/specs/stdlib_specialfunctions.html#softplus_grad ))
429429 #:for rk, rt in REAL_KINDS_TYPES
430- elemental module function Softplus_grad_ ${rk}$( x ) result( y )
430+ elemental module function softplus_grad_ ${rk}$( x ) result( y )
431431 ${rt}$, intent(in) :: x
432432 ${rt}$ :: y
433433 end function
434434 #:endfor
435435 end interface
436- public :: Softplus_grad
436+ public :: softplus_grad
437437
438438 interface ftanh
439439 !! Version: experimental
0 commit comments