add go support (#59)

This commit is contained in:
Darren Cheng 2024-03-01 12:33:38 +08:00 committed by GitHub
parent 8ea0754e3f
commit f40a34c04b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 118 additions and 0 deletions

View File

@ -55,6 +55,12 @@ jobs:
cd erlang
rebar3 compile
rebar3 eunit
- name: build-test-golang
run: |
cd go
go build -o ruapu-go
./ruapu-go
macos:
runs-on: macos-latest
@ -79,6 +85,11 @@ jobs:
cd rust
cargo build --verbose
cargo test --verbose
- name: build-test-golang
run: |
cd go
go build -o ruapu-go
./ruapu-go
macos-arm64:
runs-on: macos-14
@ -103,6 +114,14 @@ jobs:
cd rust
cargo build --verbose
cargo test --verbose
- uses: actions/setup-go@v2
with:
go-version: 1.21.x
- name: build-test-golang
run: |
cd go
go build -o ruapu-go
./ruapu-go
windows:
runs-on: windows-latest
@ -142,6 +161,11 @@ jobs:
cd erlang
rebar3 compile
rebar3 eunit
- name: build-test-golang
run: |
cd go
go build -o ruapu-go.exe
./ruapu-go.exe
qemu:
runs-on: ubuntu-latest

View File

@ -264,6 +264,46 @@ end program main
</td></tr>
</table>
### ruapu with Golang
<table>
<tr><td>
Compile ruapu library
```shell
cd go
go build -o ruapu-go
```
</td>
<td>
Use ruapu in Golang
```go
package main
import (
"fmt"
"ruapu-go/ruapu"
"strconv"
)
func main() {
ruapu.Init()
avx2Status := ruapu.Supports("avx2")
fmt.Println("avx2:" + strconv.Itoa(avx2Status))
rua := ruapu.Rua()
fmt.Println(rua)
}
```
</td></tr>
</table>
<details>
<summary>Github-hosted runner result (Linux)</summary>

3
go/go.mod Normal file
View File

@ -0,0 +1,3 @@
module ruapu-go
go 1.20

15
go/main.go Normal file
View File

@ -0,0 +1,15 @@
package main
import (
"fmt"
"ruapu-go/ruapu"
"strconv"
)
func main() {
ruapu.Init()
avx2Status := ruapu.Supports("avx2")
fmt.Println("avx2:" + strconv.Itoa(avx2Status))
rua := ruapu.Rua()
fmt.Println(rua)
}

36
go/ruapu/ruapu-binding.go Normal file
View File

@ -0,0 +1,36 @@
package ruapu
/*
#cgo CFLAGS: -I ../../
#define RUAPU_IMPLEMENTATION
#include "ruapu.h"
#include "stdlib.h"
*/
import "C"
import (
"unsafe"
)
func Init() {
C.ruapu_init()
}
func Supports(isa string) int {
ptr := C.CString(isa)
defer C.free(unsafe.Pointer(ptr))
result := int(C.ruapu_supports(ptr))
return result
}
func Rua() []string {
p := unsafe.Pointer(C.ruapu_rua())
s := make([]string, 0, 1)
for i := 0; ; i++ {
q := *(*unsafe.Pointer)(unsafe.Pointer(uintptr(p) + uintptr(i)*unsafe.Sizeof(p)))
if q == nil {
break
}
s = append(s, C.GoString((*C.char)(q)))
}
return s
}