Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
massimim committed Mar 15, 2024
1 parent 8329b87 commit f1a9f25
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libNeonDomain/include/Neon/domain/details/aGrid/aGrid.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ class aField;
class aGrid : public Neon::domain::interface::GridBaseTemplate<aGrid, aIndex>
{
public:

constexpr static bool alphaBetaCapabilitySupported = true;


using Grid = aGrid;
using Cell = aIndex;

Expand Down
3 changes: 3 additions & 0 deletions libNeonDomain/include/Neon/domain/details/bGrid/bGrid.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ class bGrid : public Neon::domain::interface::GridBaseTemplate<bGrid<SBlock>,
bIndex<SBlock>>
{
public:
constexpr static bool alphaBetaCapabilitySupported = false;


using Grid = bGrid<SBlock>;
template <typename T, int C = 0>
using Partition = bPartition<T, C, SBlock>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ class bGridDisg : public Neon::domain::interface::GridBaseTemplate<bGridDisg<SBl
bDisgIndex<SBlock>>
{
public:
constexpr static bool alphaBetaCapabilitySupported = true;


using Grid = bGridDisg<SBlock>;
template <typename T, int C = 0>
using Partition = bDisgPartition<T, C, SBlock>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ class bGridBlockMask : public Neon::domain::interface::GridBaseTemplate<bGridBlo
bMaskIndex<SBlock>>
{
public:
constexpr static bool alphaBetaCapabilitySupported = true;

using Grid = bGridBlockMask<SBlock>;
template <typename T, int C = 0>
using Partition = bMaskPartition<T, C, SBlock>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ class bGridMask : public Neon::domain::interface::GridBaseTemplate<bGridMask<SBl
bMaskIndex<SBlock>>
{
public:

constexpr static bool alphaBetaCapabilitySupported = true;

using Grid = bGridMask<SBlock>;
template <typename T, int C = 0>
using Partition = bMaskPartition<T, C, SBlock>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ class bGridDisgMgpu : public Neon::domain::interface::GridBaseTemplate<bGridDisg
bDisgMgpuIndex<SBlock>>
{
public:

constexpr static bool alphaBetaCapabilitySupported = false;


using Grid = bGridDisgMgpu<SBlock>;
template <typename T, int C = 0>
using Partition = bDisgMgpuPartition<T, C, SBlock>;
Expand Down
2 changes: 2 additions & 0 deletions libNeonDomain/include/Neon/domain/details/dGrid/dGrid.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ namespace Neon::domain::details::dGrid {
class dGrid : public Neon::domain::interface::GridBaseTemplate<dGrid, dIndex>
{
public:
constexpr static bool alphaBetaCapabilitySupported = false;

using Grid = dGrid;
using Idx = dIndex;

Expand Down
3 changes: 3 additions & 0 deletions libNeonDomain/include/Neon/domain/details/dGridDisg/dGrid.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ namespace Neon::domain::details::disaggregated::dGrid {
class dGrid : public Neon::domain::interface::GridBaseTemplate<dGrid, dIndex>
{
public:
constexpr static bool alphaBetaCapabilitySupported = false;


using Grid = dGrid;
using Idx = dIndex;

Expand Down

0 comments on commit f1a9f25

Please sign in to comment.