├── .github ├── dependabot.yml └── workflows │ └── golang.yml ├── .golangci.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── examples └── devices │ └── main.go ├── go.mod ├── go.sum ├── gpuallocator ├── allocator.go ├── besteffort_policy.go ├── besteffort_test.go ├── common_test.go ├── device.go ├── device_test.go ├── options.go ├── simple_policy.go ├── simple_test.go ├── staticdgx_policies.go └── staticdgx_test.go ├── internal └── links │ ├── device.go │ └── pciinfo.go ├── vendor ├── github.com │ ├── NVIDIA │ │ ├── go-nvlib │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pkg │ │ │ │ └── nvlib │ │ │ │ └── device │ │ │ │ ├── api.go │ │ │ │ ├── device.go │ │ │ │ ├── identifier.go │ │ │ │ ├── mig_device.go │ │ │ │ └── mig_profile.go │ │ └── go-nvml │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ ├── dl │ │ │ ├── dl.go │ │ │ └── dl_linux.go │ │ │ └── nvml │ │ │ ├── api.go │ │ │ ├── cgo_helpers.h │ │ │ ├── cgo_helpers_static.go │ │ │ ├── const.go │ │ │ ├── const_static.go │ │ │ ├── device.go │ │ │ ├── doc.go │ │ │ ├── dynamicLibrary_mock.go │ │ │ ├── event_set.go │ │ │ ├── gpm.go │ │ │ ├── init.go │ │ │ ├── lib.go │ │ │ ├── mock │ │ │ ├── computeinstance.go │ │ │ ├── device.go │ │ │ ├── eventset.go │ │ │ ├── extendedinterface.go │ │ │ ├── gpmsample.go │ │ │ ├── gpuinstance.go │ │ │ ├── interface.go │ │ │ ├── unit.go │ │ │ ├── vgpuinstance.go │ │ │ └── vgputypeid.go │ │ │ ├── nvml.go │ │ │ ├── nvml.h │ │ │ ├── refcount.go │ │ │ ├── return.go │ │ │ ├── system.go │ │ │ ├── types_gen.go │ │ │ ├── unit.go │ │ │ ├── vgpu.go │ │ │ └── zz_generated.api.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── google │ │ └── uuid │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── null.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ ├── version4.go │ │ │ ├── version6.go │ │ │ └── version7.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ └── stretchr │ │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── gopkg.in │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── modules.txt └── versions.mk /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/golang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/.github/workflows/golang.yml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/README.md -------------------------------------------------------------------------------- /examples/devices/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/examples/devices/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/go.sum -------------------------------------------------------------------------------- /gpuallocator/allocator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/allocator.go -------------------------------------------------------------------------------- /gpuallocator/besteffort_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/besteffort_policy.go -------------------------------------------------------------------------------- /gpuallocator/besteffort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/besteffort_test.go -------------------------------------------------------------------------------- /gpuallocator/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/common_test.go -------------------------------------------------------------------------------- /gpuallocator/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/device.go -------------------------------------------------------------------------------- /gpuallocator/device_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/device_test.go -------------------------------------------------------------------------------- /gpuallocator/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/options.go -------------------------------------------------------------------------------- /gpuallocator/simple_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/simple_policy.go -------------------------------------------------------------------------------- /gpuallocator/simple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/simple_test.go -------------------------------------------------------------------------------- /gpuallocator/staticdgx_policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/staticdgx_policies.go -------------------------------------------------------------------------------- /gpuallocator/staticdgx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/gpuallocator/staticdgx_test.go -------------------------------------------------------------------------------- /internal/links/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/internal/links/device.go -------------------------------------------------------------------------------- /internal/links/pciinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/internal/links/pciinfo.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvlib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvlib/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvlib/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/api.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/device.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/identifier.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/mig_device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/mig_device.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/mig_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvlib/pkg/nvlib/device/mig_profile.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/dl/dl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/dl/dl.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/dl/dl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/dl/dl_linux.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/api.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/cgo_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/cgo_helpers.h -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/cgo_helpers_static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/cgo_helpers_static.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/const.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/const_static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/const_static.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/device.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/dynamicLibrary_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/dynamicLibrary_mock.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/event_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/event_set.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/gpm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/gpm.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/init.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/lib.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/computeinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/computeinstance.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/device.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/eventset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/eventset.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/extendedinterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/extendedinterface.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/gpmsample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/gpmsample.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/gpuinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/gpuinstance.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/interface.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/unit.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/vgpuinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/vgpuinstance.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/vgputypeid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/mock/vgputypeid.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/nvml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/nvml.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/nvml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/nvml.h -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/refcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/refcount.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/return.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/system.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/types_gen.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/unit.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/vgpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/vgpu.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/go-nvml/pkg/nvml/zz_generated.api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/NVIDIA/go-nvml/pkg/nvml/zz_generated.api.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/assertion_compare.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/assertion_order.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_custom.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_default.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_fail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_fail.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/require/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/forward_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/require/forward_requirements.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/require/require.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/require/require.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/require/require_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/require/require_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/github.com/stretchr/testify/require/requirements.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /versions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/go-gpuallocator/HEAD/versions.mk --------------------------------------------------------------------------------