mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +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:
@@ -10,7 +10,7 @@
|
||||
|
||||
template <ck::index_t N>
|
||||
using I = ck::Number<N>;
|
||||
#ifdef __fp16__
|
||||
#ifdef CK_ENABLE_FP16
|
||||
using F16 = ck::half_t;
|
||||
#endif
|
||||
using F32 = float;
|
||||
@@ -23,7 +23,7 @@ class TestSoftmax : public ck::TestSoftmax<Tuple>
|
||||
// clang-format off
|
||||
using KernelTypes = ::testing::Types<
|
||||
// InDataType, AccDataType, OutDataType, Rank
|
||||
#ifdef __fp16__
|
||||
#ifdef CK_ENABLE_FP16
|
||||
std::tuple< F16, F32, F16, I<3>>,
|
||||
#endif
|
||||
std::tuple< F32, F32, F32, I<3>>
|
||||
|
||||
Reference in New Issue
Block a user