다음을 통해 공유


TensorPrimitives.Dot 메서드

정의

오버로드

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

단정밀도 부동 소수점 숫자를 포함하는 두 텐서의 점 곱을 계산합니다.

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

숫자를 포함하는 두 텐서의 점 곱을 계산합니다.

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

Source:
TensorPrimitives.cs
Source:
TensorPrimitives.Single.cs
Source:
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>)

Source:
TensorPrimitives.Dot.cs
Source:
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 런타임을 호출하거나 현재 아키텍처와 관련된 지침을 사용할 수 있습니다. 정확한 결과는 운영 체제 또는 아키텍처마다 다를 수 있습니다.

적용 대상