xref: /libCEED/examples/petsc/bps.h (revision d4cc18453651bd0f94c1a2e078b2646a92dafdcc)
1*9ba83ac0SJeremy L Thompson // Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
23d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3e83e87a5Sjeremylt //
43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5e83e87a5Sjeremylt //
63d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
724a65d3dSJeremy L Thompson #pragma once
8e83e87a5Sjeremylt 
9e83e87a5Sjeremylt // -----------------------------------------------------------------------------
10e83e87a5Sjeremylt // Command Line Options
11e83e87a5Sjeremylt // -----------------------------------------------------------------------------
12e83e87a5Sjeremylt 
13e83e87a5Sjeremylt // MemType Options
142b730f8bSJeremy L Thompson static const char *const mem_types[] = {"host", "device", "memType", "CEED_MEM_", 0};
15e83e87a5Sjeremylt 
16e83e87a5Sjeremylt // Coarsening options
172b730f8bSJeremy L Thompson typedef enum { COARSEN_UNIFORM = 0, COARSEN_LOGARITHMIC = 1 } CoarsenType;
182b730f8bSJeremy L Thompson static const char *const coarsen_types[] = {"uniform", "logarithmic", "CoarsenType", "COARSEN", 0};
19e83e87a5Sjeremylt 
20725737e8SJeremy L Thompson static const char *const bp_types[] = {"bp1", "bp2", "bp3", "bp4", "bp5", "bp6", "bp1_3", "bp2_4", "bp1_5", "bp2_6", "BPType", "CEED_BP", 0};
21