Поделиться через


TensorPrimitives.ShiftRightArithmetic<T> Метод

Определение

Вычисляет арифметический арифметический (подписанный) элемент, сдвигающий справа от чисел в указанном тензоре по указанному сумме сдвига.

public:
generic <typename T>
 where T : System::Numerics::IShiftOperators<T, int, T> static void ShiftRightArithmetic(ReadOnlySpan<T> x, int shiftAmount, Span<T> destination);
public static void ShiftRightArithmetic<T> (ReadOnlySpan<T> x, int shiftAmount, Span<T> destination) where T : System.Numerics.IShiftOperators<T,int,T>;
static member ShiftRightArithmetic : ReadOnlySpan<'T (requires 'T :> System.Numerics.IShiftOperators<'T, int, 'T>)> * int * Span<'T (requires 'T :> System.Numerics.IShiftOperators<'T, int, 'T>)> -> unit (requires 'T :> System.Numerics.IShiftOperators<'T, int, 'T>)
Public Shared Sub ShiftRightArithmetic(Of T As IShiftOperators(Of T, Integer, T)) (x As ReadOnlySpan(Of T), shiftAmount As Integer, destination As Span(Of T))

Параметры типа

T

Параметры

x
ReadOnlySpan<T>

Тензор, представленный в виде диапазона.

shiftAmount
Int32

Число битов для перемещения, представленное как скалярное.

destination
Span<T>

Тензор назначения, представленный в виде диапазона.

Исключения

x и destination ссылаются на перекрывающиеся расположения памяти и не начинаются в одном расположении.

Комментарии

Этот метод эффективно вычисляет destination[i] = x[i] >> shiftAmount.

Применяется к