All modules (except ocl and gpu) compiles and pass tests

This commit is contained in:
Andrey Kamaev
2013-03-20 20:13:46 +04:00
parent 762aefd71b
commit 2ad7b97f1c
91 changed files with 606 additions and 604 deletions

View File

@@ -68,13 +68,13 @@ namespace cv
}
//lookup the binary given the file name
cl_program progLookup(std::string srcsign);
cl_program progLookup(cv::String srcsign);
//add program to the cache
void addProgram(std::string srcsign, cl_program program);
void addProgram(cv::String srcsign, cl_program program);
void releaseProgram();
std::map <std::string, cl_program> codeCache;
std::map <cv::String, cl_program> codeCache;
unsigned int cacheSize;
//The presumed watermark for the cache volume (256MB). Is it enough?
//We may need more delicate algorithms when necessary later.