Commit 88cd18df authored by one's avatar one
Browse files

Merge branch 'main' into dtk

parents 0a1a15ea 3c95714f
...@@ -14,12 +14,12 @@ jobs: ...@@ -14,12 +14,12 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install dependencies - name: Install misspell
run: | run: |
curl -L https://git.io/misspell | sudo bash -s -- -b /bin go install github.com/client9/misspell/cmd/misspell@v0.3.4
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Check spelling - name: Check spelling
run: | run: misspell -error .
misspell -error .
cpp: cpp:
name: CPP code lint name: CPP code lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
......
...@@ -162,6 +162,7 @@ def run(self): ...@@ -162,6 +162,7 @@ def run(self):
}, },
setup_requires=[ setup_requires=[
'setuptools_scm', 'setuptools_scm',
'vcs_versioning; python_version>="3.10"',
], ],
install_requires=[ install_requires=[
'ansible;os_name=="posix" and python_version>"3.10"', 'ansible;os_name=="posix" and python_version>"3.10"',
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
import os import os
from superbench.common.utils import logger from superbench.common.utils import logger
from superbench.benchmarks import BenchmarkRegistry, ReturnCode from superbench.benchmarks import BenchmarkRegistry, Platform, ReturnCode
from superbench.benchmarks.micro_benchmarks import MicroBenchmarkWithInvoke from superbench.benchmarks.micro_benchmarks import MicroBenchmarkWithInvoke
...@@ -253,4 +253,4 @@ def _process_raw_result(self, cmd_idx, raw_output): ...@@ -253,4 +253,4 @@ def _process_raw_result(self, cmd_idx, raw_output):
return True return True
BenchmarkRegistry.register_benchmark('gpu-stream', GpuStreamBenchmark) BenchmarkRegistry.register_benchmark('gpu-stream', GpuStreamBenchmark, platform=Platform.ROCM)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment