We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f961e40 commit ae68798Copy full SHA for ae68798
src/perftest_parameters.c
@@ -2045,6 +2045,11 @@ enum ctx_device ib_dev_name(struct ibv_context *context)
2045
case 5522 : dev_fname = INTEL_GEN2; break;
2046
default : dev_fname = INTEL_GEN2; break;
2047
}
2048
+ } else if (attr.vendor_id == 0x209b) {
2049
+ switch (attr.vendor_part_id) {
2050
+ case 0x1000: dev_fname = TCU1; break;
2051
+ default : dev_fname = UNKNOWN; break;
2052
+ }
2053
} else {
2054
2055
//coverity[uninit_use]
src/perftest_parameters.h
@@ -387,6 +387,7 @@ enum ctx_device {
387
CONNECTX8 = 31,
388
INTEL_GEN2 = 32,
389
CONNECTX9 = 33,
390
+ TCU1 = 34,
391
};
392
393
/* Units for rate limiter */
0 commit comments