Beispiel #1
0
 => Vec128Cmp.Define <sbyte>(CompareEqual(lhs, rhs));
Beispiel #2
0
 => max(lhs, rhs);
Beispiel #3
0
 => Multiply(lhs, rhs);
Beispiel #4
0
 => Subtract(lhs, rhs);
Beispiel #5
0
        // TODO! create an overload because np.power also allows to pass an array of exponents for every entry in the array

        public override NDArray Clip(in NDArray lhs, in ValueType min, in ValueType max, Type dtype) => Clip(lhs, min, max, dtype?.GetTypeCode());
Beispiel #6
0
 => CompareScalarUnorderedEqual(lhs, rhs);
Beispiel #7
0
 => CompareLessThan(lhs, rhs);
Beispiel #8
0
 => CompareScalarNotLessThan(lhs, rhs).IsNaN(0);
        // TODO! create an overload because np.power also allows to pass an array of exponents for every entry in the array

        public override NDArray ClipNDArray(in NDArray lhs, in NDArray min, in NDArray max, Type dtype) => ClipNDArray(lhs, min, max, dtype?.GetTypeCode());
Beispiel #10
0
 => TestNotZAndNotC(lhs, rhs);
Beispiel #11
0
 => CompareScalarNotGreaterThan(lhs, rhs).IsNaN(0);
Beispiel #12
0
 => Average(lhs, rhs);
Beispiel #13
0
 => Divide(lhs, rhs);
Beispiel #14
0
 => DivideScalar(lhs, rhs);
Beispiel #15
0
 => Add(lhs, rhs);
Beispiel #16
0
 => MinScalar(lhs, rhs);
Beispiel #17
0
 lhs = add(lhs, rhs);
Beispiel #18
0
 => Min(lhs, rhs);
Beispiel #19
0
 => Vec128Cmp.Define <float>(CompareEqual(lhs, rhs));
Beispiel #20
0
 => SubtractSaturate(lhs, rhs);
Beispiel #21
0
 => SubtractScalar(lhs, rhs);
Beispiel #22
0
 => CompareScalarOrderedNotEqual(lhs, rhs);
Beispiel #23
0
        // TODO! create an overload because np.power also allows to pass an array of exponents for every entry in the array

        public override NDArray Power(in NDArray lhs, in ValueType rhs, Type dtype) => Power(lhs, rhs, dtype?.GetTypeCode());
Beispiel #24
0
 => CompareNotEqual(lhs, rhs);
 if (ReferenceEquals(lhs, rhs))
 {
     return(false);
Beispiel #26
0
 => Compare(lhs, rhs, FloatComparisonMode.OrderedNotEqualNonSignaling);
Beispiel #27
0
 dst = and(lhs, rhs);
Beispiel #28
0
 => Xor(lhs, rhs);
        // TODO! create an overload because np.power also allows to pass an array of exponents for every entry in the array

        public override NDArray ClipNDArray(in NDArray lhs, in NDArray min, in NDArray max, Type dtype, NDArray @out = null) => ClipNDArray(lhs, min, max, dtype?.GetTypeCode(), @out);
Beispiel #30
0
 lhs = avgz(lhs, rhs);