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
004710fb
Unverified
Commit
004710fb
authored
Nov 07, 2023
by
gilbertlee-amd
Committed by
GitHub
Nov 07, 2023
Browse files
Setting default GPU_KERNEL=3 for gfx942 (#64)
parent
82d55c36
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
CHANGELOG.md
CHANGELOG.md
+4
-0
src/include/EnvVars.hpp
src/include/EnvVars.hpp
+2
-1
No files found.
CHANGELOG.md
View file @
004710fb
# Changelog for TransferBench
## v1.34
### Added
-
Set GPU_KERNEL=3 to default for gfx942
## v1.33
### Added
-
Adding ALWAYS_VALIDATE env var to allow for validation after every iteration instead of just once at end of all iterations
...
...
src/include/EnvVars.hpp
View file @
004710fb
...
...
@@ -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