Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rai-project/nvidia-smi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: c3sr/nvidia-smi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 15 commits
  • 16 files changed
  • 1 contributor

Commits on Nov 21, 2020

  1. update dep and CI

    yen-hsiang-chang committed Nov 21, 2020
    Copy the full SHA
    3a66214 View commit details

Commits on Feb 3, 2021

  1. update bumpversion

    yen-hsiang-chang committed Feb 3, 2021
    Copy the full SHA
    181aef2 View commit details
  2. Copy the full SHA
    3793b06 View commit details
  3. update dep

    yen-hsiang-chang committed Feb 3, 2021
    Copy the full SHA
    3464780 View commit details
  4. Copy the full SHA
    00b505f View commit details
  5. Copy the full SHA
    eab460e View commit details

Commits on Mar 13, 2021

  1. Copy the full SHA
    da05153 View commit details
  2. use go module

    yen-hsiang-chang committed Mar 13, 2021
    Copy the full SHA
    3d2b9b1 View commit details
  3. Copy the full SHA
    dece3c1 View commit details

Commits on Jun 3, 2021

  1. Copy the full SHA
    a280056 View commit details
  2. add RTX 3090

    yen-hsiang-chang committed Jun 3, 2021
    Copy the full SHA
    47e677e View commit details
  3. Copy the full SHA
    d497f28 View commit details
  4. Copy the full SHA
    29e41eb View commit details
  5. fix RTX 3090

    yen-hsiang-chang committed Jun 3, 2021
    Copy the full SHA
    bd4fd3f View commit details
  6. Copy the full SHA
    6f1d743 View commit details
Showing with 2,479 additions and 2,125 deletions.
  1. +0 −3 .agignore
  2. +4 −0 .bumpversion.cfg
  3. +1 −0 .editorconfig
  4. +6 −14 .travis.yml
  5. +0 −428 Gopkg.lock
  6. +0 −62 Gopkg.toml
  7. +2 −2 README.md
  8. +0 −16 glide.yaml
  9. +14 −0 go.mod
  10. +819 −0 go.sum
  11. +2 −2 init.go
  12. +13 −0 interconnect.go
  13. +13 −1 nvidia_gpus.go
  14. +1,603 −1,595 nvidiasmi_easyjson.go
  15. +1 −1 nvidiasmi_test.go
  16. +1 −1 setup_arm64.go
3 changes: 0 additions & 3 deletions .agignore

This file was deleted.

4 changes: 4 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[bumpversion]
current_version = 1.0.2
commit = True
tag = False
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -9,3 +9,4 @@ insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

20 changes: 6 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
language: go
matrix:
jobs:
include:
- go: 1.10.x
- go: 1.11.x
- go: tip
allow_failures:
- go: tip
- go: 1.15
os: linux
dist: xenial
sudo: false
before_install:
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
install:
- dep ensure
- go build
script:
- echo "Skip tests..."
- go build ./...
script: true
after_script:
- go test -race -v .
- go test -race -v -cover ./...
Loading