[Log] Added information about implementation state
This commit is contained in:
parent
8e79625b56
commit
2c9f7bcc76
|
@ -488,6 +488,15 @@ template <typename Tuple>
|
||||||
void PrintKernelCall(cpu::Export* export_entry, const Tuple& params) {
|
void PrintKernelCall(cpu::Export* export_entry, const Tuple& params) {
|
||||||
auto& string_buffer = *thread_local_string_buffer();
|
auto& string_buffer = *thread_local_string_buffer();
|
||||||
string_buffer.Reset();
|
string_buffer.Reset();
|
||||||
|
|
||||||
|
if (export_entry->tags & xe::cpu::ExportTag::kStub) {
|
||||||
|
string_buffer.Append("[STUB] ");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (export_entry->tags & xe::cpu::ExportTag::kSketchy) {
|
||||||
|
string_buffer.Append("[SKETCHY] ");
|
||||||
|
}
|
||||||
|
|
||||||
string_buffer.Append(export_entry->name);
|
string_buffer.Append(export_entry->name);
|
||||||
string_buffer.Append('(');
|
string_buffer.Append('(');
|
||||||
AppendKernelCallParams(string_buffer, export_entry, params);
|
AppendKernelCallParams(string_buffer, export_entry, params);
|
||||||
|
|
Loading…
Reference in New Issue