mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 17:26:00 +00:00
[HotFix] add config and version files to pass on build info (#856)
* experiment with config file * experiment with version.h config * add more info to version.h * minor updates * minor updates * fix case where DTYPE is not used * large amount of files but minor changes * remove white space * minor changes to add more MACROs * fix cmakedefine01 * fix issue with CK internal conflict * fix define and define value * fix clang-format * fix formatting issue * experiment with cmake * clang format v12 to be consistent with miopen * avoid clang-format for config file
This commit is contained in:
@@ -71,7 +71,7 @@ int profile_batched_gemm_multi_d(int argc, char* argv[])
|
||||
const int BatchCount = std::stoi(argv[17]);
|
||||
|
||||
using F16 = ck::half_t;
|
||||
#ifdef __int8__
|
||||
#ifdef CK_ENABLE_INT8
|
||||
using INT8 = int8_t;
|
||||
#endif
|
||||
|
||||
@@ -165,7 +165,7 @@ int profile_batched_gemm_multi_d(int argc, char* argv[])
|
||||
{
|
||||
return profile(F16{}, F16{}, F16{}, Col{}, Col{}, Row{});
|
||||
}
|
||||
#ifdef __int8__
|
||||
#ifdef CK_ENABLE_INT8
|
||||
else if(data_type == GemmDataType::INT8_INT8_INT8 && layout == GemmMatrixLayout::MK_KN_MN)
|
||||
{
|
||||
return profile(INT8{}, INT8{}, INT8{}, Row{}, Row{}, Row{});
|
||||
|
||||
Reference in New Issue
Block a user