You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
605 B
26 lines
605 B
5 years ago
|
#include "model/processor/IProcessStrategy.h"
|
||
5 years ago
|
#include <QImage>
|
||
|
#include <QPixmap>
|
||
|
|
||
|
IProcessStrategy::IProcessStrategy(const Context context,
|
||
|
const QString kernelPath,
|
||
5 years ago
|
const QString kernelName,
|
||
|
const QObject* parent)
|
||
5 years ago
|
{
|
||
|
try
|
||
|
{
|
||
|
_CLContext = context;
|
||
|
_kernel = _openCLHelper.createKernel(context, kernelPath, kernelName);
|
||
|
}
|
||
|
catch(...)
|
||
|
{
|
||
|
qDebug() << "An error occured while creating CL strategy.";
|
||
|
throw;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Device IProcessStrategy::getDefaultDevice(const Context &context)
|
||
|
{
|
||
|
return (_openCLHelper.getDevicesByContext(context)[0]);
|
||
|
}
|