Skip to content

Commit

Permalink
add missing registration macros
Browse files Browse the repository at this point in the history
  • Loading branch information
gentryx committed Jul 24, 2017
1 parent 836376c commit 14af9ad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -141,6 +141,14 @@ class AsymmetricDummyModel
std::vector<int> neighbors; std::vector<int> neighbors;
}; };


}

REGISTER_CELLCOMPONENT(DummyModel, DummyMessage, fixmeB)
REGISTER_CELLCOMPONENT(AsymmetricDummyModel, DummyMessage, fixmeC)

namespace LibGeoDecomp {


template<typename MODEL> template<typename MODEL>
class DummyInitializer : public Initializer<MODEL> class DummyInitializer : public Initializer<MODEL>
{ {
Expand Down
5 changes: 3 additions & 2 deletions src/testbed/hpxperformancetests/main.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -183,8 +183,6 @@ LIBGEODECOMP_REGISTER_HPX_COMM_TYPE(UnstructuredBusyworkCell)
LIBGEODECOMP_REGISTER_HPX_COMM_TYPE(UnstructuredBusyworkCellWithUpdateLineX) LIBGEODECOMP_REGISTER_HPX_COMM_TYPE(UnstructuredBusyworkCellWithUpdateLineX)
LIBGEODECOMP_REGISTER_HPX_COMM_TYPE(UnstructuredBusyworkCellWithSoAAndUpdateLineX) LIBGEODECOMP_REGISTER_HPX_COMM_TYPE(UnstructuredBusyworkCellWithSoAAndUpdateLineX)




/** /**
* Connects cells in a structure that corresponds to a regular grid of * Connects cells in a structure that corresponds to a regular grid of
* the given width. * the given width.
Expand Down Expand Up @@ -427,6 +425,9 @@ class DataflowTestModel
std::vector<int> neighbors; std::vector<int> neighbors;
}; };


REGISTER_CELLCOMPONENT(DataflowTestModel, MessageType, fixme)


class DataflowTestInitializer : public Initializer<DataflowTestModel> class DataflowTestInitializer : public Initializer<DataflowTestModel>
{ {
public: public:
Expand Down

0 comments on commit 14af9ad

Please sign in to comment.