共用方式為


TensorPrimitives.Dot 方法

定義

多載

Dot(ReadOnlySpan<Single>, ReadOnlySpan<Single>)

計算包含單精度浮點數的兩個張量點乘積。

Dot<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)

計算包含數位的兩個張量點乘積。

Dot(ReadOnlySpan<Single>, ReadOnlySpan<Single>)

來源:
TensorPrimitives.cs
來源:
TensorPrimitives.Single.cs
來源:
TensorPrimitives.Single.cs

計算包含單精度浮點數的兩個張量點乘積。

public:
 static float Dot(ReadOnlySpan<float> x, ReadOnlySpan<float> y);
public static float Dot (ReadOnlySpan<float> x, ReadOnlySpan<float> y);
static member Dot : ReadOnlySpan<single> * ReadOnlySpan<single> -> single
Public Shared Function Dot (x As ReadOnlySpan(Of Single), y As ReadOnlySpan(Of Single)) As Single

參數

x
ReadOnlySpan<Single>

第一個張量,以範圍表示。

y
ReadOnlySpan<Single>

第二個張量,以範圍表示。

傳回

點產品。

例外狀況

x 長度必須與 y長度相同。

備註

此方法可有效地計算相當於: Span<float> products = ...; TensorPrimitives.Multiply(x, y, products); float result = TensorPrimitives.Sum(products); ,但不需要中繼產品的額外暫存記憶體。 它會對應至 BLAS1所定義的 dot 方法。

如果任何輸入元素等於 NaN,則產生的值也是 NaN。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於

Dot<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)

來源:
TensorPrimitives.Dot.cs
來源:
TensorPrimitives.Dot.cs

計算包含數位的兩個張量點乘積。

public:
generic <typename T>
 where T : System::Numerics::IAdditionOperators<T, T, T>, System::Numerics::IAdditiveIdentity<T, T>, System::Numerics::IMultiplyOperators<T, T, T>, System::Numerics::IMultiplicativeIdentity<T, T> static T Dot(ReadOnlySpan<T> x, ReadOnlySpan<T> y);
public static T Dot<T> (ReadOnlySpan<T> x, ReadOnlySpan<T> y) where T : System.Numerics.IAdditionOperators<T,T,T>, System.Numerics.IAdditiveIdentity<T,T>, System.Numerics.IMultiplyOperators<T,T,T>, System.Numerics.IMultiplicativeIdentity<T,T>;
static member Dot : ReadOnlySpan<'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T> and 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T> and 'T :> System.Numerics.IMultiplicativeIdentity<'T, 'T>)> * ReadOnlySpan<'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T> and 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T> and 'T :> System.Numerics.IMultiplicativeIdentity<'T, 'T>)> -> 'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T> and 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T> and 'T :> System.Numerics.IMultiplicativeIdentity<'T, 'T>)
Public Shared Function Dot(Of T As {IAdditionOperators(Of T, T, T), IAdditiveIdentity(Of T, T), IMultiplyOperators(Of T, T, T), IMultiplicativeIdentity(Of T, T)}) (x As ReadOnlySpan(Of T), y As ReadOnlySpan(Of T)) As T

類型參數

T

參數

x
ReadOnlySpan<T>

第一個張量,以範圍表示。

y
ReadOnlySpan<T>

第二個張量,以範圍表示。

傳回

T

點產品。

例外狀況

x 長度必須與 y長度相同。

備註

此方法可有效地計算相當於: Span<T> products = ...; TensorPrimitives.Multiply(x, y, products); T result = TensorPrimitives.Sum(products); ,但不需要中繼產品的額外暫存記憶體。 它會對應至 BLAS1所定義的 dot 方法。

如果任何輸入元素等於 NaN,則產生的值也是 NaN。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於