mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-12 17:26:04 +00:00
15 lines
260 B
C++
15 lines
260 B
C++
#include "debug.h"
|
|
#include "mscclpp.h"
|
|
|
|
int main()
|
|
{
|
|
mscclppUniqueId uid;
|
|
mscclppResult_t res = mscclppGetUniqueId(&uid);
|
|
if (res != mscclppSuccess) {
|
|
printf("mscclppGetUniqueId failed\n");
|
|
return -1;
|
|
}
|
|
printf("Succeeded!\n");
|
|
return 0;
|
|
}
|