1e83e87a5Sjeremylt // Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at 2e83e87a5Sjeremylt // the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights 3e83e87a5Sjeremylt // reserved. See files LICENSE and NOTICE for details. 4e83e87a5Sjeremylt // 5e83e87a5Sjeremylt // This file is part of CEED, a collection of benchmarks, miniapps, software 6e83e87a5Sjeremylt // libraries and APIs for efficient high-order finite element and spectral 7e83e87a5Sjeremylt // element discretizations for exascale applications. For more information and 8e83e87a5Sjeremylt // source code availability see http://github.com/ceed. 9e83e87a5Sjeremylt // 10e83e87a5Sjeremylt // The CEED research is supported by the Exascale Computing Project 17-SC-20-SC, 11e83e87a5Sjeremylt // a collaborative effort of two U.S. Department of Energy organizations (Office 12e83e87a5Sjeremylt // of Science and the National Nuclear Security Administration) responsible for 13e83e87a5Sjeremylt // the planning and preparation of a capable exascale ecosystem, including 14e83e87a5Sjeremylt // software, applications, hardware, advanced system engineering and early 15e83e87a5Sjeremylt // testbed platforms, in support of the nation's exascale computing imperative. 16e83e87a5Sjeremylt 17*b7c563b6SJeremy L Thompson #ifndef libceed_petsc_examples_bps_h 18*b7c563b6SJeremy L Thompson #define libceed_petsc_examples_bps_h 19e83e87a5Sjeremylt 20e83e87a5Sjeremylt // ----------------------------------------------------------------------------- 21e83e87a5Sjeremylt // Command Line Options 22e83e87a5Sjeremylt // ----------------------------------------------------------------------------- 23e83e87a5Sjeremylt 24e83e87a5Sjeremylt // MemType Options 259b072555Sjeremylt static const char *const mem_types[] = {"host","device", "memType", 26e83e87a5Sjeremylt "CEED_MEM_", 0 27e83e87a5Sjeremylt }; 28e83e87a5Sjeremylt 29e83e87a5Sjeremylt // Coarsening options 30e83e87a5Sjeremylt typedef enum { 31e83e87a5Sjeremylt COARSEN_UNIFORM = 0, COARSEN_LOGARITHMIC = 1 329b072555Sjeremylt } CoarsenType; 339b072555Sjeremylt static const char *const coarsen_types [] = {"uniform", "logarithmic", 349b072555Sjeremylt "CoarsenType", "COARSEN", 0 35e83e87a5Sjeremylt }; 36e83e87a5Sjeremylt 379b072555Sjeremylt static const char *const bp_types[] = {"bp1", "bp2", "bp3", "bp4", "bp5", "bp6", 389b072555Sjeremylt "BPType", "CEED_BP", 0 39e83e87a5Sjeremylt }; 40e83e87a5Sjeremylt 41*b7c563b6SJeremy L Thompson #endif // libceed_petsc_examples_bps_h 42