mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 19:50:38 +08:00
212 lines
5.7 KiB
C++
212 lines
5.7 KiB
C++
/*
|
|
* Copyright 1993-2010 NVIDIA Corporation. All rights reserved.
|
|
*
|
|
* NVIDIA Corporation and its licensors retain all intellectual
|
|
* property and proprietary rights in and to this software and
|
|
* related documentation and any modifications thereto.
|
|
* Any use, reproduction, disclosure, or distribution of this
|
|
* software and related documentation without an express license
|
|
* agreement from NVIDIA Corporation is strictly prohibited.
|
|
*/
|
|
#ifndef _ncvtest_hpp_
|
|
#define _ncvtest_hpp_
|
|
|
|
#pragma warning( disable : 4201 4408 4127 4100)
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <algorithm>
|
|
#include <fstream>
|
|
|
|
#include <cuda_runtime.h>
|
|
#include "NPP_staging.hpp"
|
|
|
|
|
|
struct NCVTestReport
|
|
{
|
|
std::map<std::string, Ncv32u> statsNums;
|
|
std::map<std::string, std::string> statsText;
|
|
};
|
|
|
|
|
|
class INCVTest
|
|
{
|
|
public:
|
|
virtual bool executeTest(NCVTestReport &report) = 0;
|
|
virtual std::string getName() const = 0;
|
|
};
|
|
|
|
|
|
class NCVTestProvider : public INCVTest
|
|
{
|
|
public:
|
|
|
|
NCVTestProvider(std::string testName)
|
|
:
|
|
testName(testName)
|
|
{
|
|
int devId;
|
|
ncvAssertPrintReturn(cudaSuccess == cudaGetDevice(&devId), "Error returned from cudaGetDevice", );
|
|
ncvAssertPrintReturn(cudaSuccess == cudaGetDeviceProperties(&this->devProp, devId), "Error returned from cudaGetDeviceProperties", );
|
|
}
|
|
|
|
virtual bool init() = 0;
|
|
virtual bool process() = 0;
|
|
virtual bool deinit() = 0;
|
|
virtual bool toString(std::ofstream &strOut) = 0;
|
|
|
|
virtual std::string getName() const
|
|
{
|
|
return this->testName;
|
|
}
|
|
|
|
virtual ~NCVTestProvider()
|
|
{
|
|
deinitMemory();
|
|
}
|
|
|
|
virtual bool executeTest(NCVTestReport &report)
|
|
{
|
|
bool res;
|
|
report.statsText["rcode"] = "FAILED";
|
|
|
|
res = initMemory(report);
|
|
if (!res)
|
|
{
|
|
dumpToFile(report);
|
|
deinitMemory();
|
|
return false;
|
|
}
|
|
|
|
res = init();
|
|
if (!res)
|
|
{
|
|
dumpToFile(report);
|
|
deinit();
|
|
deinitMemory();
|
|
return false;
|
|
}
|
|
|
|
res = process();
|
|
if (!res)
|
|
{
|
|
dumpToFile(report);
|
|
deinit();
|
|
deinitMemory();
|
|
return false;
|
|
}
|
|
|
|
res = deinit();
|
|
if (!res)
|
|
{
|
|
dumpToFile(report);
|
|
deinitMemory();
|
|
return false;
|
|
}
|
|
|
|
deinitMemory();
|
|
|
|
report.statsText["rcode"] = "Passed";
|
|
return true;
|
|
}
|
|
|
|
protected:
|
|
|
|
cudaDeviceProp devProp;
|
|
std::auto_ptr<INCVMemAllocator> allocatorGPU;
|
|
std::auto_ptr<INCVMemAllocator> allocatorCPU;
|
|
|
|
private:
|
|
|
|
std::string testName;
|
|
|
|
bool initMemory(NCVTestReport &report)
|
|
{
|
|
this->allocatorGPU.reset(new NCVMemStackAllocator(devProp.textureAlignment));
|
|
this->allocatorCPU.reset(new NCVMemStackAllocator(devProp.textureAlignment));
|
|
|
|
if (!this->allocatorGPU.get()->isInitialized() ||
|
|
!this->allocatorCPU.get()->isInitialized())
|
|
{
|
|
report.statsText["rcode"] = "Memory FAILED";
|
|
return false;
|
|
}
|
|
|
|
if (!this->process())
|
|
{
|
|
report.statsText["rcode"] = "Memory FAILED";
|
|
return false;
|
|
}
|
|
|
|
Ncv32u maxGPUsize = (Ncv32u)this->allocatorGPU.get()->maxSize();
|
|
Ncv32u maxCPUsize = (Ncv32u)this->allocatorCPU.get()->maxSize();
|
|
|
|
report.statsNums["MemGPU"] = maxGPUsize;
|
|
report.statsNums["MemCPU"] = maxCPUsize;
|
|
|
|
this->allocatorGPU.reset(new NCVMemStackAllocator(NCVMemoryTypeDevice, maxGPUsize, devProp.textureAlignment));
|
|
|
|
this->allocatorCPU.reset(new NCVMemStackAllocator(NCVMemoryTypeHostPinned, maxCPUsize, devProp.textureAlignment));
|
|
|
|
if (!this->allocatorGPU.get()->isInitialized() ||
|
|
!this->allocatorCPU.get()->isInitialized())
|
|
{
|
|
report.statsText["rcode"] = "Memory FAILED";
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void deinitMemory()
|
|
{
|
|
this->allocatorGPU.reset();
|
|
this->allocatorCPU.reset();
|
|
}
|
|
|
|
void dumpToFile(NCVTestReport &report)
|
|
{
|
|
bool bReasonMem = (0 == report.statsText["rcode"].compare("Memory FAILED"));
|
|
std::string fname = "TestDump_";
|
|
fname += (bReasonMem ? "m_" : "") + this->testName + ".log";
|
|
std::ofstream stream(fname.c_str(), std::ios::trunc | std::ios::out);
|
|
if (!stream.is_open()) return;
|
|
|
|
stream << "NCV Test Failure Log: " << this->testName << std::endl;
|
|
stream << "====================================================" << std::endl << std::endl;
|
|
stream << "Test initialization report: " << std::endl;
|
|
for (std::map<std::string,std::string>::iterator it=report.statsText.begin();
|
|
it != report.statsText.end(); it++)
|
|
{
|
|
stream << it->first << "=" << it->second << std::endl;
|
|
}
|
|
for (std::map<std::string,Ncv32u>::iterator it=report.statsNums.begin();
|
|
it != report.statsNums.end(); it++)
|
|
{
|
|
stream << it->first << "=" << it->second << std::endl;
|
|
}
|
|
stream << std::endl;
|
|
|
|
stream << "Test initialization parameters: " << std::endl;
|
|
bool bSerializeRes = false;
|
|
try
|
|
{
|
|
bSerializeRes = this->toString(stream);
|
|
}
|
|
catch (...)
|
|
{
|
|
}
|
|
|
|
if (!bSerializeRes)
|
|
{
|
|
stream << "Couldn't retrieve object dump" << std::endl;
|
|
}
|
|
|
|
stream.flush();
|
|
}
|
|
};
|
|
|
|
#endif // _ncvtest_hpp_
|