corrected hipDeviceGetProperties to hipGetDeviceProperties - not docs

このコミットが含まれているのは:
Aditya Atluri
2016-03-06 08:31:04 -06:00
コミット d3ba2b9782
24個のファイルの変更27行の追加27行の削除
+1 -1
ファイルの表示
@@ -60,7 +60,7 @@ int main(int argc, char *argv[])
int deviceId;
CHECK (hipGetDevice(&deviceId));
hipDeviceProp_t props;
CHECK(hipDeviceGetProperties(&props, deviceId));
CHECK(hipGetDeviceProperties(&props, deviceId));
printf ("info: running on device #%d %s\n", deviceId, props.name);