-
Notifications
You must be signed in to change notification settings - Fork 40
fix: update hami commit #109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,21 @@ | ||
| version: "2" | ||
|
|
||
| linters: | ||
| enable: | ||
| - asciicheck | ||
| - misspell | ||
| - staticcheck | ||
|
|
||
| exclusions: | ||
| paths: | ||
| - mind-cluster | ||
| - libvnpu | ||
|
|
||
| formatters: | ||
| enable: | ||
| - gofmt | ||
| - goimports | ||
| - stylecheck | ||
|
|
||
| issues: | ||
| exclude-dirs: | ||
| - mind-cluster | ||
| - libvnpu | ||
| exclude-rules: | ||
| - path: internal/server/server\.go | ||
| linters: | ||
| - staticcheck | ||
| text: "SA1019:.*deprecated" | ||
| exclusions: | ||
| paths: | ||
| - mind-cluster | ||
| - libvnpu | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,90 +1,91 @@ | ||
| module github.com/Project-HAMi/ascend-device-plugin | ||
|
|
||
| go 1.24.6 | ||
| go 1.26.2 | ||
|
|
||
| require ( | ||
| ascend-common v0.0.0 | ||
| github.com/Project-HAMi/HAMi v0.0.0 | ||
| github.com/fsnotify/fsnotify v1.9.0 | ||
| github.com/fsnotify/fsnotify v1.10.1 | ||
| github.com/prometheus/client_golang v1.23.2 | ||
| google.golang.org/grpc v1.75.0 | ||
| google.golang.org/grpc v1.82.0 | ||
| huawei.com/npu-exporter v0.0.0-00010101000000-000000000000 | ||
| k8s.io/api v0.33.0 | ||
| k8s.io/apimachinery v0.33.0 | ||
| k8s.io/client-go v0.33.0 | ||
| k8s.io/klog/v2 v2.130.1 | ||
| k8s.io/kubelet v0.31.3 | ||
| k8s.io/api v0.36.2 | ||
| k8s.io/apimachinery v0.36.2 | ||
| k8s.io/client-go v0.36.2 | ||
| k8s.io/klog/v2 v2.140.0 | ||
| k8s.io/kubelet v0.36.2 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/NVIDIA/go-gpuallocator v0.6.0 // indirect | ||
| github.com/NVIDIA/go-nvlib v0.7.4 // indirect | ||
| github.com/NVIDIA/go-nvml v0.12.9-0 // indirect | ||
| github.com/NVIDIA/k8s-device-plugin v0.17.3 // indirect | ||
| github.com/NVIDIA/nvidia-container-toolkit v1.18.0-rc.2 // indirect | ||
| github.com/NVIDIA/go-nvlib v0.11.0 // indirect | ||
| github.com/NVIDIA/go-nvml v0.13.3-1 // indirect | ||
| github.com/NVIDIA/k8s-device-plugin v0.19.3 // indirect | ||
| github.com/NVIDIA/nvidia-container-toolkit v1.19.1 // indirect | ||
| github.com/beorn7/perks v1.0.1 // indirect | ||
| github.com/ccoveille/go-safecast v1.6.1 // indirect | ||
| github.com/ccoveille/go-safecast/v2 v2.0.1 // indirect | ||
| github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
| github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect | ||
| github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
| github.com/emicklei/go-restful/v3 v3.11.3 // indirect | ||
| github.com/fxamacker/cbor/v2 v2.7.0 // indirect | ||
| github.com/emicklei/go-restful/v3 v3.13.0 // indirect | ||
| github.com/fxamacker/cbor/v2 v2.9.0 // indirect | ||
| github.com/go-logr/logr v1.4.3 // indirect | ||
| github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
| github.com/go-openapi/jsonreference v0.20.4 // indirect | ||
| github.com/go-openapi/swag v0.23.0 // indirect | ||
| github.com/gogo/protobuf v1.3.2 // indirect | ||
| github.com/google/gnostic-models v0.6.9 // indirect | ||
| github.com/google/go-cmp v0.7.0 // indirect | ||
| github.com/google/gnostic-models v0.7.0 // indirect | ||
| github.com/google/uuid v1.6.0 // indirect | ||
| github.com/imdario/mergo v0.3.16 // indirect | ||
| github.com/influxdata/telegraf v1.26.3 // indirect | ||
| github.com/josharian/intern v1.0.0 // indirect | ||
| github.com/json-iterator/go v1.1.12 // indirect | ||
| github.com/mailru/easyjson v0.7.7 // indirect | ||
| github.com/moby/sys/capability v0.4.0 // indirect | ||
| github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
| github.com/modern-go/reflect2 v1.0.2 // indirect | ||
| github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect | ||
| github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
| github.com/opencontainers/runtime-spec v1.2.1 // indirect | ||
| github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 // indirect | ||
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/opencontainers/cgroups v0.0.6 // indirect | ||
| github.com/opencontainers/runc v1.4.3 // indirect | ||
| github.com/opencontainers/runtime-spec v1.3.0 // indirect | ||
| github.com/opencontainers/runtime-tools v0.9.1-0.20251114084447-edf4cb3d2116 // indirect | ||
| github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
| github.com/prometheus/client_model v0.6.2 // indirect | ||
| github.com/prometheus/common v0.66.1 // indirect | ||
| github.com/prometheus/procfs v0.16.1 // indirect | ||
| github.com/prometheus/common v0.67.5 // indirect | ||
| github.com/prometheus/procfs v0.20.1 // indirect | ||
| github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
| github.com/sirupsen/logrus v1.9.3 // indirect | ||
| github.com/sirupsen/logrus v1.9.4 // indirect | ||
| github.com/smartystreets/goconvey v1.7.2 // indirect | ||
| github.com/spf13/pflag v1.0.7 // indirect | ||
| github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect | ||
| github.com/spf13/pflag v1.0.10 // indirect | ||
| github.com/urfave/cli/v2 v2.27.7 // indirect | ||
| github.com/x448/float16 v0.8.4 // indirect | ||
| github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect | ||
| go.yaml.in/yaml/v2 v2.4.2 // indirect | ||
| golang.org/x/mod v0.27.0 // indirect | ||
| golang.org/x/net v0.43.0 // indirect | ||
| golang.org/x/oauth2 v0.30.0 // indirect | ||
| golang.org/x/sys v0.35.0 // indirect | ||
| golang.org/x/term v0.34.0 // indirect | ||
| golang.org/x/text v0.28.0 // indirect | ||
| golang.org/x/time v0.9.0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect | ||
| google.golang.org/protobuf v1.36.8 // indirect | ||
| gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect | ||
| go.yaml.in/yaml/v2 v2.4.3 // indirect | ||
| go.yaml.in/yaml/v3 v3.0.4 // indirect | ||
| golang.org/x/mod v0.38.0 // indirect | ||
| golang.org/x/net v0.57.0 // indirect | ||
| golang.org/x/oauth2 v0.36.0 // indirect | ||
| golang.org/x/sys v0.47.0 // indirect | ||
| golang.org/x/term v0.45.0 // indirect | ||
| golang.org/x/text v0.40.0 // indirect | ||
| golang.org/x/time v0.14.0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478 // indirect | ||
| google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af // indirect | ||
| gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect | ||
| gopkg.in/inf.v0 v0.9.1 // indirect | ||
| gopkg.in/yaml.v2 v2.4.0 // indirect | ||
| gopkg.in/yaml.v3 v3.0.1 // indirect | ||
| k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect | ||
| k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect | ||
| sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect | ||
| k8s.io/kube-openapi v0.0.0-20260317180543-43fb72c5454a // indirect | ||
| k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2 // indirect | ||
| sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect | ||
| sigs.k8s.io/randfill v1.0.0 // indirect | ||
| sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect | ||
| sigs.k8s.io/yaml v1.4.0 // indirect | ||
| tags.cncf.io/container-device-interface v1.0.1 // indirect | ||
| tags.cncf.io/container-device-interface/specs-go v1.0.0 // indirect | ||
| sigs.k8s.io/structured-merge-diff/v6 v6.3.2 // indirect | ||
| sigs.k8s.io/yaml v1.6.0 // indirect | ||
| tags.cncf.io/container-device-interface v1.1.0 // indirect | ||
| tags.cncf.io/container-device-interface/specs-go v1.1.0 // indirect | ||
| ) | ||
|
|
||
| replace ( | ||
| ascend-common => ./mind-cluster/component/ascend-common | ||
| github.com/Project-HAMi/HAMi v0.0.0 => github.com/Project-HAMi/HAMi v0.0.0-20250901013025-61c6cbe7d480 | ||
| github.com/Project-HAMi/HAMi v0.0.0 => github.com/Project-HAMi/HAMi v0.0.0-20260713065729-5f0adaa7a5ba | ||
| huawei.com/npu-exporter => ./mind-cluster/component/npu-exporter | ||
| ) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.