Table of Contents

Method Multiply_TwoWord

Namespace
Zyl.VectorTraits.Impl.AVector256
Assembly
VectorTraits.dll

Multiply_TwoWord(Vector256<long>, Vector256<long>)

Multiplies two vectors to compute their element-wise product (将两个向量相乘来计算它们各元素的积). Mnemonic: rt[i] := left[i] * right[i].

public static Vector256<long> Multiply_TwoWord(Vector256<long> left, Vector256<long> right)

Parameters

left Vector256<long>

The vector to multiply with right (将会与right进行相乘的向量).

right Vector256<long>

The vector to add with left (将会与left进行相加的向量).

Returns

Vector256<long>

The element-wise product of left and right (leftright的各元素乘积).

See Also

Multiply_TwoWord(Vector256<ulong>, Vector256<ulong>)

Multiplies two vectors to compute their element-wise product (将两个向量相乘来计算它们各元素的积). Mnemonic: rt[i] := left[i] * right[i].

[CLSCompliant(false)]
public static Vector256<ulong> Multiply_TwoWord(Vector256<ulong> left, Vector256<ulong> right)

Parameters

left Vector256<ulong>

The vector to multiply with right (将会与right进行相乘的向量).

right Vector256<ulong>

The vector to add with left (将会与left进行相加的向量).

Returns

Vector256<ulong>

The element-wise product of left and right (leftright的各元素乘积).

See Also