2023-11-29 19:00:37 +00:00
|
|
|
package gpu
|
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2024-05-22 05:21:04 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2023-11-29 19:00:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestBasicGetGPUInfo(t *testing.T) {
|
|
|
|
info := GetGPUInfo()
|
2024-05-22 05:21:04 +00:00
|
|
|
assert.NotEmpty(t, len(info))
|
2024-03-30 16:50:05 +00:00
|
|
|
assert.Contains(t, "cuda rocm cpu metal", info[0].Library)
|
|
|
|
if info[0].Library != "cpu" {
|
|
|
|
assert.Greater(t, info[0].TotalMemory, uint64(0))
|
|
|
|
assert.Greater(t, info[0].FreeMemory, uint64(0))
|
2023-11-29 19:00:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-22 23:43:31 +00:00
|
|
|
func TestCPUMemInfo(t *testing.T) {
|
2024-03-30 16:50:05 +00:00
|
|
|
info, err := GetCPUMem()
|
2024-05-22 05:21:04 +00:00
|
|
|
require.NoError(t, err)
|
2023-12-22 23:43:31 +00:00
|
|
|
switch runtime.GOOS {
|
|
|
|
case "darwin":
|
|
|
|
t.Skip("CPU memory not populated on darwin")
|
|
|
|
case "linux", "windows":
|
|
|
|
assert.Greater(t, info.TotalMemory, uint64(0))
|
|
|
|
assert.Greater(t, info.FreeMemory, uint64(0))
|
|
|
|
default:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-29 19:00:37 +00:00
|
|
|
// TODO - add some logic to figure out card type through other means and actually verify we got back what we expected
|