hcc_dialects report PASSED when passed

Este commit está contenido en:
Maneesh Gupta
2016-05-03 14:32:59 +05:30
padre fb88bb1c17
commit 07026bfdea
Se han modificado 6 ficheros con 18 adiciones y 0 borrados
@@ -11,6 +11,7 @@ int main(int argc, char *argv[])
{
int sizeElements = 1000000;
size_t sizeBytes = sizeElements * sizeof(float);
bool pass = true;
// Allocate host memory
float *A_h = (float*)malloc(sizeBytes);
@@ -48,6 +49,8 @@ int main(int argc, char *argv[])
float ref= 1.618f * i + 3.142f * i;
if (C_h[i] != ref) {
printf ("error:%d computed=%6.2f, reference=%6.2f\n", i, C_h[i], ref);
pass = false;
}
};
if (pass) printf ("PASSED!\n");
}