Small tool, doc, sample enhancements.

- Expand message when HIP version mismatch detected.
- Doc touchup.
- change sorting of hipBusBandwidth so byte results shown at top.
-

Change-Id: Ifb4e44a5fdfb65d59c4994b11e5f13385705f7e0
Этот коммит содержится в:
Ben Sander
2016-09-22 17:51:52 -05:00
родитель 5bdb9e349c
Коммит 061bcc6a5c
6 изменённых файлов: 21 добавлений и 11 удалений
+2 -2
Просмотреть файл
@@ -49,8 +49,8 @@ std::string sizeToString(int size)
using namespace std;
stringstream ss;
if (size < 0) {
// char (09, horiz tab) lexically sorts before " " so will cause Byte values to be displayed before kB.
ss << char(0x09)/*tab*/ << setfill('0') << setw(3) << -size << "B";
// char (-) lexically sorts before " " so will cause Byte values to be displayed before kB.
ss << "+" << setfill('0') << setw(3) << -size << "By";
} else {
ss << size << "kB";
}