mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 18:17:44 +00:00
* Format
* Format
* Format
* Remove const
* Use the right template
* Format
* Format
* add row/col instances
* Add missing file
* fixed
* Format
* Updates
* Format
* fixed rrr layout
* Format
* Update test and embed modules
* Restore older version
* Update year
* Set -fPIC
* Format
* Use double for isnan
* rename host folder to codegen + minor fix
* add codegen CI test
* add option to build components without building CK
* fix the groovy syntax
* fix typo
* use the correct function for the codegen stage
---------
Co-authored-by: Jing Zhang <jizha@amd.com>
Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com>
Co-authored-by: illsilin <Illia.Silin@amd.com>
[ROCm/composable_kernel commit: 8eff4d62b6]
25 lines
434 B
C++
25 lines
434 B
C++
#ifndef GUARD_HOST_TEST_RTC_INCLUDE_RTC_TMP_DIR
|
|
#define GUARD_HOST_TEST_RTC_INCLUDE_RTC_TMP_DIR
|
|
|
|
#include <string>
|
|
#include <filesystem>
|
|
|
|
namespace rtc {
|
|
|
|
struct tmp_dir
|
|
{
|
|
std::filesystem::path path;
|
|
tmp_dir(const std::string& prefix = "");
|
|
|
|
void execute(const std::string& cmd) const;
|
|
|
|
tmp_dir(tmp_dir const&) = delete;
|
|
tmp_dir& operator=(tmp_dir const&) = delete;
|
|
|
|
~tmp_dir();
|
|
};
|
|
|
|
} // namespace rtc
|
|
|
|
#endif
|