Skip to content

Commit

Permalink
amrex::Stack (#4139)
Browse files Browse the repository at this point in the history
Move the Stack class used in Parser to its own header so that it can be
used by others. The Stack class has a fixed maximum size. This is useful
for traversing a tree on GPU, because recursive function does not work
well in device code.
  • Loading branch information
WeiqunZhang committed Sep 8, 2024
1 parent 87de52e commit 51db5ec
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 26 deletions.
24 changes: 24 additions & 0 deletions Src/Base/AMReX_Stack.H
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#ifndef AMREX_STACK_H_
#define AMREX_STACK_H_

namespace amrex {

template <typename T, int N>
struct Stack
{
public:
constexpr void push (T v) { m_data[m_size++] = v; }
constexpr void pop () { --m_size; }
[[nodiscard]] constexpr bool empty () const { return m_size == 0; }
[[nodiscard]] constexpr int size () const { return m_size; }
[[nodiscard]] constexpr T const& top () const { return m_data[m_size-1]; }
[[nodiscard]] constexpr T & top () { return m_data[m_size-1]; }
[[nodiscard]] constexpr T operator[] (int i) const { return m_data[i]; }
private:
T m_data[N];
int m_size = 0;
};

}

#endif
1 change: 1 addition & 0 deletions Src/Base/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ foreach(D IN LISTS AMReX_SPACEDIM)
AMReX_parmparse_fi.cpp
AMReX_ParmParse.H
AMReX_Functional.H
AMReX_Stack.H
AMReX_String.H
AMReX_String.cpp
AMReX_Utility.H
Expand Down
2 changes: 2 additions & 0 deletions Src/Base/Make.package
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ C$(AMREX_BASE)_sources += AMReX_PODVector.cpp
C$(AMREX_BASE)_headers += AMReX_BlockMutex.H
C$(AMREX_BASE)_sources += AMReX_BlockMutex.cpp

C$(AMREX_BASE)_headers += AMReX_Stack.H

C$(AMREX_BASE)_headers += AMReX_String.H
C$(AMREX_BASE)_sources += AMReX_String.cpp

Expand Down
15 changes: 2 additions & 13 deletions Src/Base/Parser/AMReX_IParser_Exe.H
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <AMReX_Config.H>

#include <AMReX_IParser_Y.H>
#include <AMReX_Stack.H>
#include <AMReX_Vector.H>

#include <limits>
Expand Down Expand Up @@ -226,24 +227,12 @@ struct alignas(8) IParserExeJUMP {
int offset;
};

template <int N>
struct IParserStack
{
long long m_data[N];
int m_size = 0;
constexpr void push (long long v) { m_data[m_size++] = v; }
constexpr void pop () { --m_size; }
[[nodiscard]] constexpr long long const& top () const { return m_data[m_size-1]; }
[[nodiscard]] constexpr long long & top () { return m_data[m_size-1]; }
[[nodiscard]] constexpr long long operator[] (int i) const { return m_data[i]; }
};

AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE
long long iparser_exe_eval (const char* p, long long const* x)
{
if (p == nullptr) { return std::numeric_limits<long long>::max(); }

IParserStack<AMREX_IPARSER_STACK_SIZE> pstack;
Stack<long long, AMREX_IPARSER_STACK_SIZE> pstack;
while (*((iparser_exe_t*)p) != IPARSER_EXE_NULL) {
switch (*((iparser_exe_t*)p))
{
Expand Down
15 changes: 2 additions & 13 deletions Src/Base/Parser/AMReX_Parser_Exe.H
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <AMReX_Config.H>

#include <AMReX_Parser_Y.H>
#include <AMReX_Stack.H>
#include <AMReX_Vector.H>

#include <limits>
Expand Down Expand Up @@ -217,24 +218,12 @@ struct alignas(8) ParserExeJUMP {
int offset;
};

template <int N>
struct ParserStack
{
double m_data[N];
int m_size = 0;
constexpr void push (double v) { m_data[m_size++] = v; }
constexpr void pop () { --m_size; }
[[nodiscard]] constexpr double const& top () const { return m_data[m_size-1]; }
[[nodiscard]] constexpr double & top () { return m_data[m_size-1]; }
[[nodiscard]] constexpr double operator[] (int i) const { return m_data[i]; }
};

AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE
double parser_exe_eval (const char* p, double const* x)
{
if (p == nullptr) { return std::numeric_limits<double>::max(); }

ParserStack<AMREX_PARSER_STACK_SIZE> pstack;
Stack<double, AMREX_PARSER_STACK_SIZE> pstack;
while (*((parser_exe_t*)p) != PARSER_EXE_NULL) { // NOLINT
switch (*((parser_exe_t*)p))
{
Expand Down

0 comments on commit 51db5ec

Please sign in to comment.