Merge pull request #489 from gargrahul/add_dev_prop_integrated

Add integrated device property
This commit is contained in:
Maneesh Gupta
2018-06-06 14:31:30 +05:30
committed by GitHub
5 changed files with 16 additions and 0 deletions
@@ -108,5 +108,6 @@ int main(int argc, char* argv[]) {
test_hipDeviceGetAttribute(deviceId, hipDeviceAttributePciDeviceId, props.pciDeviceID)); //
CHECK(test_hipDeviceGetAttribute(deviceId, hipDeviceAttributeMaxSharedMemoryPerMultiprocessor,
props.maxSharedMemoryPerMultiProcessor));
CHECK(test_hipDeviceGetAttribute(deviceId, hipDeviceAttributeIntegrated, props.integrated));
passed();
};