* kill process tree using syscall on windows & cleanup (#80) * kill process tree using syscall on windows & cleanup * use job api * add error check for cmd.Start * modularize monitor, reduce init usage * replace slices with sort * update gopsutil & other dependencies
14 lines
218 B
Go
14 lines
218 B
Go
//go:build !darwin && !linux && !windows
|
|
|
|
package gpu
|
|
|
|
import "context"
|
|
|
|
func GetHost(_ context.Context) ([]string, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func GetState(_ context.Context) ([]float64, error) {
|
|
return nil, nil
|
|
}
|