ASL
0.1.7
Advanced Simulation Library
Toggle main menu visibility
Loading...
Searching...
No Matches
testKernelMerger.cc
/*
* Advanced Simulation Library <http://asl.org.il>
*
* Copyright 2015 Avtech Scientific <http://avtechscientific.com>
*
*
* This file is part of Advanced Simulation Library (ASL).
*
* ASL is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, version 3 of the License.
*
* ASL is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with ASL. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "
acl/acl.h
"
#include "
acl/DataTypes/aclConstant.h
"
#include "
acl/DataTypes/aclArray.h
"
#include "
acl/Kernels/aclKernel.h
"
#include "
acl/Kernels/aclKernelMerger.h
"
#include "
aslUtilities.h
"
#include <math.h>
#include <initializer_list>
using namespace
acl
;
using namespace
std
;
bool
testKernelMerger
()
{
cout <<
"Test of \"KernelMerger\" functionality..."
<< flush;
ElementData
vec0(
new
Array<cl_float>
(10));
ElementData
vec1(
new
Array<cl_float>
(5));
ElementData
vec2(
new
Array<cl_float>
(8));
ElementData
vec3(
new
Array<cl_float>
(20));
Element
c0(
new
Constant<cl_double>
(2));
Element
c1(
new
Constant<cl_double>
(1));
Element
c2(
new
Constant<cl_double>
(4));
Element
c3(
new
Constant<cl_double>
(7));
SPKernel
k0(
new
Kernel
());
SPKernel
k1(
new
Kernel
());
SPKernel
k2(
new
Kernel
());
SPKernel
k3(
new
Kernel
());
{
using namespace
elementOperators
;
k0->addExpression(operatorAssignment (vec0, c0));
k1->addExpression(operatorAssignment (vec1, c1));
k2->addExpression(operatorAssignment (vec2, c2));
k3->addExpression(operatorAssignment (vec3, c3));
}
KernelMerger
km;
km.
addKernel
(k0);
km.
addKernel
(k1);
km.
addKernel
(k2);
// km.addKernel(k3);
km.
setup
();
km.
compute
();
bool
status((acl::map<float>(vec0).get()[9] == 2) &&
(acl::map<float>(vec1).get()[3] == 1) &&
(acl::map<float>(vec2).get()[7] == 4));
// &&
// (acl::map<float>(vec3).get()[19] == 7));
errorMessage(status);
cout << km.
getKernelSource
() << endl;
return
status;
}
int
main
()
{
bool
allTestsPassed(
true
);
allTestsPassed &=
testKernelMerger
();
return
allTestsPassed ? EXIT_SUCCESS : EXIT_FAILURE;
}
acl.h
aclArray.h
aclConstant.h
aclKernel.h
aclKernelMerger.h
aslUtilities.h
useful common utilities
acl::Array
Global array.
Definition
aclArray.h:37
acl::Constant
Definition
aclConstant.h:34
acl::Kernel
OpenCl Kernel generator.
Definition
aclKernel.h:49
acl::KernelMerger
OpenCl Kernel merger.
Definition
aclKernelMerger.h:46
acl::KernelMerger::compute
void compute()
acl::KernelMerger::setup
void setup()
acl::KernelMerger::getKernelSource
std::string getKernelSource()
acl::KernelMerger::addKernel
void addKernel(SPKernel k)
acl::elementOperators
definitions of mathematical operators and functions for class Element
Definition
acl.h:56
acl
Advanced Computational Language.
Definition
acl.h:41
acl::ElementData
std::shared_ptr< MemBlock > ElementData
Definition
acl.h:48
acl::SPKernel
std::shared_ptr< Kernel > SPKernel
Definition
aclKernelMerger.h:35
acl::Element
std::shared_ptr< ElementBase > Element
Definition
acl.h:49
std
STL namespace.
main
int main()
Definition
testABDFormat.cc:126
testKernelMerger
bool testKernelMerger()
Definition
testKernelMerger.cc:41
Generated by
1.17.0