// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !noasm

package utils

import (
	
)

// This file contains convenience functions for utilizing AVX2 intrinsics to quickly
// and efficiently get the min and max from an integral slice.

//go:noescape
func _int8_max_min_avx2( unsafe.Pointer,  int, ,  unsafe.Pointer)

func int8MaxMinAVX2( []int8) (,  int8) {
	_int8_max_min_avx2(unsafe.Pointer(&[0]), len(), unsafe.Pointer(&), unsafe.Pointer(&))
	return
}

//go:noescape
func _uint8_max_min_avx2( unsafe.Pointer,  int, ,  unsafe.Pointer)

func uint8MaxMinAVX2( []uint8) (,  uint8) {
	_uint8_max_min_avx2(unsafe.Pointer(&[0]), len(), unsafe.Pointer(&), unsafe.Pointer(&))
	return
}

//go:noescape
func _int16_max_min_avx2( unsafe.Pointer,  int, ,  unsafe.Pointer)

func int16MaxMinAVX2( []int16) (,  int16) {
	_int16_max_min_avx2(unsafe.Pointer(&[0]), len(), unsafe.Pointer(&), unsafe.Pointer(&))
	return
}

//go:noescape
func _uint16_max_min_avx2( unsafe.Pointer,  int, ,  unsafe.Pointer)

func uint16MaxMinAVX2( []uint16) (,  uint16) {
	_uint16_max_min_avx2(unsafe.Pointer(&[0]), len(), unsafe.Pointer(&), unsafe.Pointer(&))
	return
}

//go:noescape
func _int32_max_min_avx2( unsafe.Pointer,  int, ,  unsafe.Pointer)

func int32MaxMinAVX2( []int32) (,  int32) {
	_int32_max_min_avx2(unsafe.Pointer(&[0]), len(), unsafe.Pointer(&), unsafe.Pointer(&))
	return
}

//go:noescape
func _uint32_max_min_avx2( unsafe.Pointer,  int, ,  unsafe.Pointer)

func uint32MaxMinAVX2( []uint32) (,  uint32) {
	_uint32_max_min_avx2(unsafe.Pointer(&[0]), len(), unsafe.Pointer(&), unsafe.Pointer(&))
	return
}

//go:noescape
func _int64_max_min_avx2( unsafe.Pointer,  int, ,  unsafe.Pointer)

func int64MaxMinAVX2( []int64) (,  int64) {
	_int64_max_min_avx2(unsafe.Pointer(&[0]), len(), unsafe.Pointer(&), unsafe.Pointer(&))
	return
}

//go:noescape
func _uint64_max_min_avx2( unsafe.Pointer,  int, ,  unsafe.Pointer)

func uint64MaxMinAVX2( []uint64) (,  uint64) {
	_uint64_max_min_avx2(unsafe.Pointer(&[0]), len(), unsafe.Pointer(&), unsafe.Pointer(&))
	return
}