Lines Matching refs:report
72 virtual bool executeTest(NCVTestReport &report) = 0;
106 virtual bool executeTest(NCVTestReport &report) in executeTest() argument
109 report.statsText["rcode"] = "FAILED"; in executeTest()
111 res = initMemory(report); in executeTest()
114 dumpToFile(report); in executeTest()
122 dumpToFile(report); in executeTest()
131 dumpToFile(report); in executeTest()
140 dumpToFile(report); in executeTest()
147 report.statsText["rcode"] = "Passed"; in executeTest()
161 bool initMemory(NCVTestReport &report) in initMemory() argument
169 report.statsText["rcode"] = "Memory FAILED"; in initMemory()
175 report.statsText["rcode"] = "Memory FAILED"; in initMemory()
182 report.statsNums["MemGPU"] = maxGPUsize; in initMemory()
183 report.statsNums["MemCPU"] = maxCPUsize; in initMemory()
192 report.statsText["rcode"] = "Memory FAILED"; in initMemory()
205 void dumpToFile(NCVTestReport &report) in dumpToFile() argument
207 bool bReasonMem = (0 == report.statsText["rcode"].compare("Memory FAILED")); in dumpToFile()
216 for (std::map<std::string,std::string>::iterator it=report.statsText.begin(); in dumpToFile()
217 it != report.statsText.end(); it++) in dumpToFile()
221 for (std::map<std::string,Ncv32u>::iterator it=report.statsNums.begin(); in dumpToFile()
222 it != report.statsNums.end(); it++) in dumpToFile()