13d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, 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 7*24a65d3dSJeremy 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 202b730f8bSJeremy L Thompson static const char *const bp_types[] = {"bp1", "bp2", "bp3", "bp4", "bp5", "bp6", "BPType", "CEED_BP", 0}; 21