mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
19 lines
353 B
Go
19 lines
353 B
Go
package main
|
|
|
|
import (
|
|
log "github.com/hashicorp/go-hclog"
|
|
|
|
"github.com/hashicorp/nomad/devices/gpu/nvidia"
|
|
"github.com/hashicorp/nomad/plugins"
|
|
)
|
|
|
|
func main() {
|
|
// Serve the plugin
|
|
plugins.Serve(factory)
|
|
}
|
|
|
|
// factory returns a new instance of the Nvidia GPU plugin
|
|
func factory(log log.Logger) interface{} {
|
|
return nvidia.NewNvidiaDevice(log)
|
|
}
|