次の方法で共有


TensorPrimitives.BitwiseOr メソッド

定義

オーバーロード

BitwiseOr<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)

指定したテンソル内の数値の要素ごとのビットごとの OR を計算します。

BitwiseOr<T>(ReadOnlySpan<T>, T, Span<T>)

指定したテンソル内の数値の要素ごとのビットごとの OR を計算します。

BitwiseOr<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)

ソース:
TensorPrimitives.BitwiseOr.cs
ソース:
TensorPrimitives.BitwiseOr.cs

指定したテンソル内の数値の要素ごとのビットごとの OR を計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

スパンとして表される最初のテンソル。

y
ReadOnlySpan<T>

スパンとして表される 2 番目のテンソル。

destination
Span<T>

スパンとして表される宛先テンソル。

例外

ydestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = x[i] | y[i]を効果的に計算します。

適用対象

BitwiseOr<T>(ReadOnlySpan<T>, T, Span<T>)

ソース:
TensorPrimitives.BitwiseOr.cs
ソース:
TensorPrimitives.BitwiseOr.cs

指定したテンソル内の数値の要素ごとのビットごとの OR を計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

スパンとして表される最初のテンソル。

y
T

スカラーとして表される 2 番目のテンソル。

destination
Span<T>

スパンとして表される宛先テンソル。

例外

xdestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = x[i] | yを効果的に計算します。

適用対象