Example #1
0
 => Vec128Cmp.Define <sbyte>(CompareEqual(lhs, rhs));
Example #2
0
 => max(lhs, rhs);
Example #3
0
 => Multiply(lhs, rhs);
Example #4
0
 => Subtract(lhs, rhs);
Example #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());
Example #6
0
File: cmpeq.cs Project: 0xCM/arrows
 => CompareScalarUnorderedEqual(lhs, rhs);
Example #7
0
File: cmplt.cs Project: 0xCM/arrows
 => CompareLessThan(lhs, rhs);
Example #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());
Example #10
0
 => TestNotZAndNotC(lhs, rhs);
Example #11
0
 => CompareScalarNotGreaterThan(lhs, rhs).IsNaN(0);
Example #12
0
File: avg.cs Project: 0xCM/arrows
 => Average(lhs, rhs);
Example #13
0
 => Divide(lhs, rhs);
Example #14
0
 => DivideScalar(lhs, rhs);
Example #15
0
 => Add(lhs, rhs);
Example #16
0
 => MinScalar(lhs, rhs);
Example #17
0
File: add.g.cs Project: 0xCM/arrows
 lhs = add(lhs, rhs);
Example #18
0
 => Min(lhs, rhs);
Example #19
0
File: cmpeq.cs Project: 0xCM/arrows
 => Vec128Cmp.Define <float>(CompareEqual(lhs, rhs));
Example #20
0
File: subs.cs Project: 0xCM/arrows
 => SubtractSaturate(lhs, rhs);
Example #21
0
 => SubtractScalar(lhs, rhs);
Example #22
0
 => CompareScalarOrderedNotEqual(lhs, rhs);
Example #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());
Example #24
0
 => CompareNotEqual(lhs, rhs);
 if (ReferenceEquals(lhs, rhs))
 {
     return(false);
Example #26
0
 => Compare(lhs, rhs, FloatComparisonMode.OrderedNotEqualNonSignaling);
Example #27
0
File: and.g.cs Project: 0xCM/arrows
 dst = and(lhs, rhs);
Example #28
0
File: xor.cs Project: 0xCM/arrows
 => 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);
Example #30
0
 lhs = avgz(lhs, rhs);