-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update device-specific config headers with benchmark tuning results (#…
…471) I ran the benchmark tuning code and scripts on the remaining architectures in our GPU support matrix. This change updates the config headers with the results.
- Loading branch information
Showing
12 changed files
with
200 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// Copyright (c) 2024 Advanced Micro Devices, Inc. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
#ifndef ROCRAND_RNG_CONFIG_MT19937_CONFIG_HPP_ | ||
#define ROCRAND_RNG_CONFIG_MT19937_CONFIG_HPP_ | ||
|
||
#include "config_defaults.hpp" | ||
#include <rocrand/rocrand.h> | ||
|
||
/* DO NOT EDIT THIS FILE | ||
* This file is automatically generated by `/scripts/config-tuning/select_best_config.py`. | ||
*/ | ||
|
||
namespace rocrand_host::detail | ||
{ | ||
|
||
template<class T> | ||
struct generator_config_selector<ROCRAND_RNG_PSEUDO_MT19937, T> | ||
{ | ||
__host__ __device__ static constexpr unsigned int get_threads(const target_arch arch) | ||
{ | ||
switch(arch) | ||
{ | ||
case target_arch::gfx1102: return 128; | ||
case target_arch::gfx1101: return 128; | ||
case target_arch::gfx1100: return 64; | ||
case target_arch::gfx942: return 128; | ||
case target_arch::gfx90a: return 1024; | ||
case target_arch::gfx908: return 512; | ||
default: | ||
return generator_config_defaults<ROCRAND_RNG_PSEUDO_MT19937, T>::threads; | ||
} | ||
} | ||
|
||
__host__ __device__ static constexpr unsigned int get_blocks(const target_arch arch) | ||
{ | ||
switch(arch) | ||
{ | ||
case target_arch::gfx1102: return 256; | ||
case target_arch::gfx1101: return 512; | ||
case target_arch::gfx1100: return 512; | ||
case target_arch::gfx942: return 1024; | ||
case target_arch::gfx90a: return 64; | ||
case target_arch::gfx908: return 64; | ||
default: | ||
return generator_config_defaults<ROCRAND_RNG_PSEUDO_MT19937, T>::blocks; | ||
} | ||
} | ||
}; | ||
|
||
} // end namespace rocrand_host::detail | ||
|
||
#endif // ROCRAND_RNG_CONFIG_MT19937_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.