Skip to content

Commit 11cde32

Browse files
committed
Update on "[ET-VK] Print op breakdown in tsv format"
Use boolean flag to switch between nicely-formatted space separator and spreadsheet-ready tab operator. Motiviation is similar to #7035 in facilitating copy-paste of results to a gsheet. Differential Revision: [D68345444](https://our.internmc.facebook.com/intern/diff/D68345444/) [ghstack-poisoned]
2 parents 0bb4aa5 + 031ad3e commit 11cde32

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

backends/vulkan/runtime/vk_api/QueryPool.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ std::string QueryPool::generate_string_report() {
233233
return ss.str();
234234
}
235235

236-
237236
std::string QueryPool::generate_tsv_string_report() {
238237
std::lock_guard<std::mutex> lock(mutex_);
239238

backends/vulkan/runtime/vk_api/QueryPool.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ class QueryPool final {
106106
operator bool() const {
107107
return querypool_ != VK_NULL_HANDLE;
108108
}
109+
109110
private:
110111
std::string generate_string_report();
111112
std::string generate_tsv_string_report();

0 commit comments

Comments
 (0)