SWDEV-522333 - hipDeviceGetPCIBusId relax format sizes (#33)

[ROCm/hip-tests commit: fd8833cc83]
Этот коммит содержится в:
GunaShekar, Ajay
2025-05-13 01:20:34 +05:30
коммит произвёл GitHub
родитель 0a42915f18
Коммит d3b8eb6ce1
2 изменённых файлов: 5 добавлений и 4 удалений
+4 -3
Просмотреть файл
@@ -28,7 +28,7 @@
* Returns a handle to a compute device.
*/
#define SIZE 13
#define SIZE 20
/**
* Test Description
@@ -53,9 +53,10 @@ TEST_CASE("Unit_hipDeviceGetByPCIBusId_Functional") {
int pciDomainID = -1;
int tempPciBusId = -1;
int tempDeviceId = -1;
int pciFunction = -1;
HIP_CHECK(hipDeviceGetPCIBusId(&pciBusId[0], SIZE, i));
sscanf(pciBusId, "%04x:%02x:%02x", &pciDomainID,
&pciBusID, &pciDeviceID);
REQUIRE(sscanf(pciBusId, "%x:%x:%x.%x", &pciDomainID,
&pciBusID, &pciDeviceID, &pciFunction) == 4);
HIP_CHECK(hipDeviceGetAttribute(&tempPciBusId,
hipDeviceAttributePciBusId, i));
+1 -1
Просмотреть файл
@@ -29,7 +29,7 @@ THE SOFTWARE.
hipDriverProcAddressQueryResult* symbolStatus);` -
* Gets the symbol's function address.
*/
constexpr int size = 13;
constexpr int size = 20;
constexpr size_t len = 256;
void CreateMemPool(int device, hipMemPool_t &mem_pool) {
hipMemPoolProps kPoolProps;