Skip to content

Commit 9c479df

Browse files
committed
fix units
1 parent 3e23841 commit 9c479df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-vulkan/ggml-vulkan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ class vk_perf_logger {
839839
for (const auto& time : t.second) {
840840
total += time;
841841
}
842-
std::cerr << t.first << ": " << t.second.size() << " x " << (total / t.second.size() / 1000.0) << " ms" << std::endl;
842+
std::cerr << t.first << ": " << t.second.size() << " x " << (total / t.second.size() / 1000.0) << " us" << std::endl;
843843
}
844844

845845
timings.clear();

0 commit comments

Comments
 (0)