Skip to content

Commit 9b5871b

Browse files
committed
delete the simd stuff
1 parent 600857c commit 9b5871b

11 files changed

Lines changed: 6 additions & 620 deletions

File tree

internal/debug/debug.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import (
2727
"strings"
2828

2929
"buf.build/go/hyperpb/internal/xflag"
30-
"buf.build/go/hyperpb/internal/xsimd"
3130
"github.com/timandy/routine"
3231
)
3332

@@ -67,10 +66,6 @@ again:
6766

6867
file = filepath.Base(file)
6968

70-
for i := range args {
71-
args[i] = xsimd.Format(args[i])
72-
}
73-
7469
buf := new(strings.Builder)
7570

7671
_, _ = fmt.Fprintf(buf, "%s/%s:%d [g%04d", pkg, file, line, routine.Goid())

internal/tdp/vm/internal/varint/avx.go

Lines changed: 0 additions & 256 deletions
This file was deleted.

internal/tdp/vm/internal/varint/empty.s

Lines changed: 0 additions & 1 deletion
This file was deleted.

internal/tdp/vm/internal/varint/no_avx.go

Lines changed: 0 additions & 27 deletions
This file was deleted.

internal/tdp/vm/internal/varint/split.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,3 @@ import "buf.build/go/hyperpb/internal/tdp/vm/internal/impl"
2020
func ScalarSplit(p1 impl.P1, p2 impl.P2) (impl.P1, impl.P2, uint64) {
2121
return Scalar(p1, p2)
2222
}
23-
24-
//go:noinline
25-
func AVX32Split(p1 impl.P1, p2 impl.P2) (impl.P1, impl.P2, uint64) {
26-
return AVX32(p1, p2)
27-
}
28-
29-
//go:noinline
30-
func AVX64Split(p1 impl.P1, p2 impl.P2) (impl.P1, impl.P2, uint64) {
31-
return AVX64(p1, p2)
32-
}

0 commit comments

Comments
 (0)