SWDEV-255938 NEW - added regex and depth support to ostream ops

Change-Id: I292255adab3a70fa00a1dd5685b788521687f35b
This commit is contained in:
Rachida Kebichi
2020-11-18 16:47:45 -05:00
parent 16ad4e9de7
commit ef36218286
6 changed files with 96 additions and 148 deletions
+1 -1
View File
@@ -37,8 +37,8 @@ inline static std::ostream& operator<<(std::ostream& out, const char& v) {
}
#endif // __cplusplus
#include <hip_ostream_ops.h>
#include <hip/hip_runtime.h>
#include <hip_ostream_ops.h>
#include <hip/hcc_detail/hip_prof_str.h>
#include <roctracer.h>
-17
View File
@@ -66,23 +66,6 @@ typedef hsa_support::ops_properties_t hsa_ops_properties_t;
#include "hsa_ostream_ops.h"
std::ostream& operator<<(std::ostream& out, const hsa_amd_memory_pool_t& v)
{
roctracer::hsa_support::operator<<(out, v);
return out;
}
std::ostream& operator<<(std::ostream& out, const hsa_ext_image_t& v)
{
roctracer::hsa_support::operator<<(out, v);
return out;
}
std::ostream& operator<<(std::ostream& out, const hsa_ext_sampler_t& v)
{
roctracer::hsa_support::operator<<(out, v);
return out;
}
#else // !__cplusplus
typedef void* hsa_amd_queue_intercept_handler;