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. 33d8e8822SJeremy L Thompson // 43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause 53d8e8822SJeremy L Thompson // 63d8e8822SJeremy L Thompson // This file is part of CEED: http://github.com/ceed 73d8e8822SJeremy L Thompson 81d013790SJed Brown // This header does not have guards because it is included multiple times. 91d013790SJed Brown 10ea61e9acSJeremy L Thompson // List each gallery registration function once here. 11ea61e9acSJeremy L Thompson // This will be expanded inside CeedQFunctionRegisterAll() to call each registration function in the order listed, and also to define weak symbol 12ea61e9acSJeremy L Thompson // aliases for QFunctions that are not configured. 131d013790SJed Brown // 14ea61e9acSJeremy L Thompson // At the time of this writing, all the gallery functions are defined, but we're adopting the same strategy here as for the backends because future 15ea61e9acSJeremy L Thompson // gallery QFunctions might depend on external libraries. 161d013790SJed Brown 17*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Identity) 18*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Mass1DBuild) 19*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Mass2DBuild) 20*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Mass3DBuild) 21*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_MassApply) 22*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Vector3MassApply) 23*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Poisson1DApply) 24*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Poisson1DBuild) 25*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Poisson2DApply) 26*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Poisson2DBuild) 27*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Poisson3DApply) 28*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Poisson3DBuild) 29*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Vector3Poisson1DApply) 30*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Vector3Poisson2DApply) 31*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Vector3Poisson3DApply) 32*49aac155SJeremy L Thompson CEED_GALLERY_QFUNCTION(CeedQFunctionRegister_Scale) 33