blob: d951460823f66e6fee1304fc1fd0d89b3ed764bf [file]
// Copyright 2026 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build goexperiment.simd && !amd64
package simd_test
import (
"simd"
)
func sum(x simd.Float32s) float32 {
return boringSum(x)
}