Lines Matching refs:vlog
425 vlog( " <-- unknown flag: %c (0x%2.2x)\n)", *arg, *arg ); in ParseArgs()
437 vlog( "\n\nTest binary built %s %s\n", __DATE__, __TIME__ ); in ParseArgs()
446 vlog( "%s [-z]: <optional: test names>\n", appName ); in PrintUsage()
447 vlog( "\tOptions:\n" ); in PrintUsage()
448 …vlog( "\t\t-z\tToggle FTZ mode (Section 6.5.3) for all functions. (Set by device capabilities by d… in PrintUsage()
449 vlog( "\t\t-sNUMBER set random seed.\n"); in PrintUsage()
450 vlog( "\n" ); in PrintUsage()
451 vlog( "\tTest names:\n" ); in PrintUsage()
454 vlog( "\t\t%s\n", test_list[i].name ); in PrintUsage()
912 vlog( "\nCompute Device info:\n" ); in InitCL()
914 vlog( "\tDevice Name: %s\n", c ); in InitCL()
916 vlog( "\tVendor: %s\n", c ); in InitCL()
918 vlog( "\tDevice Version: %s\n", c ); in InitCL()
920 vlog( "\tCL C Version: %s\n", c ); in InitCL()
922 vlog( "\tDriver Version: %s\n", c ); in InitCL()
923 vlog( "\tSubnormal values supported? %s\n", no_yes[0 != (CL_FP_DENORM & floatCapabilities)] ); in InitCL()
924 vlog( "\tTesting with FTZ mode ON? %s\n", no_yes[0 != gForceFTZ] ); in InitCL()
925 vlog( "\tTesting Doubles? %s\n", no_yes[0 != gHasDouble] ); in InitCL()
926 vlog( "\tRandom Number seed: 0x%8.8x\n", gSeed ); in InitCL()
927 vlog( "\n\n" ); in InitCL()
1078 vlog("Double is not supported, test not run.\n"); in RunTest_Double()