mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 17:26:00 +00:00
* Build codegen as standalone * Add exception for device tests * Use local filesystem header * add a codegen test CI stage and daily build --------- Co-authored-by: illsilin <Illia.Silin@amd.com> Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com>
25 lines
429 B
C++
25 lines
429 B
C++
#ifndef GUARD_HOST_TEST_RTC_INCLUDE_RTC_TMP_DIR
|
|
#define GUARD_HOST_TEST_RTC_INCLUDE_RTC_TMP_DIR
|
|
|
|
#include <string>
|
|
#include <rtc/filesystem.hpp>
|
|
|
|
namespace rtc {
|
|
|
|
struct tmp_dir
|
|
{
|
|
fs::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
|