fix build

This commit is contained in:
Inforithmics 2025-10-04 15:08:18 +02:00
parent e6c28916e1
commit f567cc59d4
1 changed files with 3 additions and 4 deletions

View File

@ -7,7 +7,6 @@ import (
"fmt"
"math"
"slices"
"sort"
"strconv"
"strings"
@ -226,9 +225,9 @@ type ScaledDotProductAttention interface {
type number interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 |
~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 |
~float32 | ~float64 |
~complex64 | ~complex128
~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 |
~float32 | ~float64 |
~complex64 | ~complex128
}
func mul[T number](s ...T) T {