package kernels
import (
"unsafe"
"github.com/apache/arrow-go/v18/arrow"
)
func _arithmetic_unary_same_types_sse4(typ int , op int8 , input , output unsafe .Pointer , len int )
func arithmeticUnarySSE4(typ arrow .Type , op ArithmeticOp , input , out []byte , len int ) {
_arithmetic_unary_same_types_sse4 (int (typ ), int8 (op ), unsafe .Pointer (&input [0 ]), unsafe .Pointer (&out [0 ]), len )
}
func _arithmetic_binary_sse4(typ int , op int8 , inLeft , inRight , out unsafe .Pointer , len int )
func arithmeticSSE4(typ arrow .Type , op ArithmeticOp , left , right , out []byte , len int ) {
_arithmetic_binary_sse4 (int (typ ), int8 (op ), unsafe .Pointer (&left [0 ]), unsafe .Pointer (&right [0 ]), unsafe .Pointer (&out [0 ]), len )
}
func _arithmetic_arr_scalar_sse4(typ int , op int8 , inLeft , inRight , out unsafe .Pointer , len int )
func arithmeticArrScalarSSE4(typ arrow .Type , op ArithmeticOp , left []byte , right unsafe .Pointer , out []byte , len int ) {
_arithmetic_arr_scalar_sse4 (int (typ ), int8 (op ), unsafe .Pointer (&left [0 ]), right , unsafe .Pointer (&out [0 ]), len )
}
func _arithmetic_scalar_arr_sse4(typ int , op int8 , inLeft , inRight , out unsafe .Pointer , len int )
func arithmeticScalarArrSSE4(typ arrow .Type , op ArithmeticOp , left unsafe .Pointer , right , out []byte , len int ) {
_arithmetic_scalar_arr_sse4 (int (typ ), int8 (op ), left , unsafe .Pointer (&right [0 ]), unsafe .Pointer (&out [0 ]), len )
}
func _arithmetic_unary_diff_type_sse4(itype , otype int , op int8 , input , output unsafe .Pointer , len int )
func arithmeticUnaryDiffTypesSSE4(ityp , otyp arrow .Type , op ArithmeticOp , input , output []byte , len int ) {
_arithmetic_unary_diff_type_sse4 (int (ityp ), int (otyp ), int8 (op ), unsafe .Pointer (&input [0 ]), unsafe .Pointer (&output [0 ]), len )
}
The pages are generated with Golds v0.8.2 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds .