Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
one
TransferBench
Commits
97b5e7fc
Unverified
Commit
97b5e7fc
authored
Nov 08, 2023
by
Lisa
Committed by
GitHub
Nov 08, 2023
Browse files
Merge branch 'develop' into readme-updates
parents
bbd61829
004710fb
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
5 deletions
+15
-5
CHANGELOG.md
CHANGELOG.md
+8
-1
docs/sphinx/requirements.in
docs/sphinx/requirements.in
+1
-1
docs/sphinx/requirements.txt
docs/sphinx/requirements.txt
+4
-2
src/include/EnvVars.hpp
src/include/EnvVars.hpp
+2
-1
No files found.
CHANGELOG.md
View file @
97b5e7fc
# Changelog for TransferBench
Full d
ocumentation for TransferBench is available at
D
ocumentation for TransferBench is available at
[
https://rocm.docs.amd.com/projects/TransferBench
](
https://rocm.docs.amd.com/projects/TransferBench
)
.
## v1.34
### Additions
*
Set
`GPU_KERNEL=3`
as default for gfx942
## v1.33
### Additions
...
...
docs/sphinx/requirements.in
View file @
97b5e7fc
rocm-docs-core==0.2
6
.0
rocm-docs-core==0.2
7
.0
docs/sphinx/requirements.txt
View file @
97b5e7fc
...
...
@@ -84,7 +84,9 @@ pygments==2.14.0
# pydata-sphinx-theme
# sphinx
pyjwt[crypto]==2.6.0
# via pygithub
# via
# pygithub
# pyjwt
pynacl==1.5.0
# via pygithub
pytz==2023.3.post1
...
...
@@ -98,7 +100,7 @@ requests==2.28.2
# via
# pygithub
# sphinx
rocm-docs-core==0.2
6
.0
rocm-docs-core==0.2
7
.0
# via -r requirements.in
smmap==5.0.0
# via gitdb
...
...
src/include/EnvVars.hpp
View file @
97b5e7fc
...
...
@@ -29,7 +29,7 @@ THE SOFTWARE.
#include "Compatibility.hpp"
#include "Kernels.hpp"
#define TB_VERSION "1.3
3
"
#define TB_VERSION "1.3
4
"
extern
char
const
MemTypeStr
[];
extern
char
const
ExeTypeStr
[];
...
...
@@ -166,6 +166,7 @@ public:
else
if
(
archName
==
"gfx90a"
)
defaultGpuKernel
=
9
;
else
if
(
archName
==
"gfx940"
)
defaultGpuKernel
=
6
;
else
if
(
archName
==
"gfx941"
)
defaultGpuKernel
=
6
;
else
if
(
archName
==
"gfx942"
)
defaultGpuKernel
=
3
;
alwaysValidate
=
GetEnvVar
(
"ALWAYS_VALIDATE"
,
0
);
blockSize
=
GetEnvVar
(
"BLOCK_SIZE"
,
256
);
...
...
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