mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-30 10:42:25 -05:00
update dependencies
This commit is contained in:
parent
18047de666
commit
6f5ccf4355
55 changed files with 5674 additions and 1905 deletions
17
vendor/github.com/zeebo/blake3/internal/consts/cpu.go
generated
vendored
Normal file
17
vendor/github.com/zeebo/blake3/internal/consts/cpu.go
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
package consts
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"golang.org/x/sys/cpu"
|
||||
)
|
||||
|
||||
var (
|
||||
HasAVX2 = cpu.X86.HasAVX2 &&
|
||||
os.Getenv("BLAKE3_DISABLE_AVX2") == "" &&
|
||||
os.Getenv("BLAKE3_PUREGO") == ""
|
||||
|
||||
HasSSE41 = cpu.X86.HasSSE41 &&
|
||||
os.Getenv("BLAKE3_DISABLE_SSE41") == "" &&
|
||||
os.Getenv("BLAKE3_PUREGO") == ""
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue