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

Merge branch 'main' into dtk

parents 0a1a15ea 3c95714f
......@@ -14,12 +14,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
- name: Install misspell
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
run: |
misspell -error .
run: misspell -error .
cpp:
name: CPP code lint
runs-on: ubuntu-latest
......
......@@ -162,6 +162,7 @@ def run(self):
},
setup_requires=[
'setuptools_scm',
'vcs_versioning; python_version>="3.10"',
],
install_requires=[
'ansible;os_name=="posix" and python_version>"3.10"',
......
......@@ -8,7 +8,7 @@
import os
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
......@@ -253,4 +253,4 @@ def _process_raw_result(self, cmd_idx, raw_output):
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