TensorPrimitives.Exp2M1<T>(ReadOnlySpan<T>, Span<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
计算将 2 提升到指定张量中的数字幂的元素运算结果,减去 1。
public:
generic <typename T>
where T : System::Numerics::IExponentialFunctions<T> static void Exp2M1(ReadOnlySpan<T> x, Span<T> destination);
public static void Exp2M1<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IExponentialFunctions<T>;
static member Exp2M1 : ReadOnlySpan<'T (requires 'T :> System.Numerics.IExponentialFunctions<'T>)> * Span<'T (requires 'T :> System.Numerics.IExponentialFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IExponentialFunctions<'T>)
Public Shared Sub Exp2M1(Of T As IExponentialFunctions(Of T)) (x As ReadOnlySpan(Of T), destination As Span(Of T))
类型参数
- T
参数
张量,表示为范围。
- destination
- Span<T>
目标张量,表示为范围。
例外
x
和 destination
引用重叠的内存位置,并且不在同一位置开始。
注解
此方法有效地计算
。destination
[i] = T
.Exp2M1(x
[i])
此方法可以调用基础 C 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。