Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
superbenchmark
Commits
88cd18df
Commit
88cd18df
authored
Apr 22, 2026
by
one
Browse files
Merge branch 'main' into dtk
parents
0a1a15ea
3c95714f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
.github/workflows/lint.yml
.github/workflows/lint.yml
+4
-4
setup.py
setup.py
+1
-0
superbench/benchmarks/micro_benchmarks/gpu_stream.py
superbench/benchmarks/micro_benchmarks/gpu_stream.py
+2
-2
No files found.
.github/workflows/lint.yml
View file @
88cd18df
...
...
@@ -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
...
...
setup.py
View file @
88cd18df
...
...
@@ -162,6 +162,7 @@ setup(
},
setup_requires
=
[
'setuptools_scm'
,
'vcs_versioning; python_version>="3.10"'
,
],
install_requires
=
[
'ansible;os_name=="posix" and python_version>"3.10"'
,
...
...
superbench/benchmarks/micro_benchmarks/gpu_stream.py
View file @
88cd18df
...
...
@@ -8,7 +8,7 @@ import io
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 @@ class GpuStreamBenchmark(MicroBenchmarkWithInvoke):
return
True
BenchmarkRegistry
.
register_benchmark
(
'gpu-stream'
,
GpuStreamBenchmark
)
BenchmarkRegistry
.
register_benchmark
(
'gpu-stream'
,
GpuStreamBenchmark
,
platform
=
Platform
.
ROCM
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment