Skip to content

Commit

Permalink
Merge pull request #717 from Pennycook/reciprocal-sqrt
Browse files Browse the repository at this point in the history
Replace "inverse sqrt" with "reciprocal" sqrt
  • Loading branch information
gmlueck authored Feb 13, 2025
2 parents f99eca5 + 1dc82b9 commit 768e913
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions adoc/chapters/programming_interface.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24715,7 +24715,7 @@ template<typename NonScalar> (4)

*Overloads (1) - (3):*

_Returns:_ The inverse square root of [code]#x#.
_Returns:_ The reciprocal square root of [code]#x#.

*Overload (4):*

Expand All @@ -24725,7 +24725,7 @@ _Constraints:_ Available only if all of the following conditions are met:
type; and
* The element type is [code]#float#, [code]#double#, or [code]#half#.

_Returns:_ For each element of [code]#x#, the inverse square root of
_Returns:_ For each element of [code]#x#, the reciprocal square root of
[code]#x[i]#.

The return type is [code]#NonScalar# unless [code]#NonScalar# is the
Expand Down Expand Up @@ -25406,7 +25406,7 @@ template<typename NonScalar> (2)

*Overload (1):*

_Returns:_ The inverse square root of [code]#x#.
_Returns:_ The reciprocal square root of [code]#x#.

*Overload (2):*

Expand All @@ -25416,7 +25416,7 @@ _Constraints:_ Available only if all of the following conditions are met:
type; and
* The element type is [code]#float#.

_Returns:_ For each element of [code]#x#, the inverse square root of
_Returns:_ For each element of [code]#x#, the reciprocal square root of
[code]#x[i]#.

The return type is [code]#NonScalar# unless [code]#NonScalar# is the
Expand Down Expand Up @@ -25848,7 +25848,7 @@ template<typename NonScalar> (2)

*Overload (1):*

_Returns:_ The inverse square root of [code]#x#.
_Returns:_ The reciprocal square root of [code]#x#.

*Overload (2):*

Expand All @@ -25858,7 +25858,7 @@ _Constraints:_ Available only if all of the following conditions are met:
type; and
* The element type is [code]#float#.

_Returns:_ For each element of [code]#x#, the inverse square root of
_Returns:_ For each element of [code]#x#, the reciprocal square root of
[code]#x[i]#.

The return type is [code]#NonScalar# unless [code]#NonScalar# is the
Expand Down

0 comments on commit 768e913

Please sign in to comment.