From fceb3b9261185769ffb177177a81933e0bc59f9a Mon Sep 17 00:00:00 2001 From: Jeremy L Thompson Date: Fri, 5 Aug 2022 14:11:10 -0600 Subject: [PATCH] wip - add skeleton of helper functions --- include/ceed/jit-source/utils/ceed-mat2.h | 13 +++++++++++++ include/ceed/jit-source/utils/ceed-mat3.h | 13 +++++++++++++ include/ceed/jit-source/utils/ceed-vec.h | 13 +++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 include/ceed/jit-source/utils/ceed-mat2.h create mode 100644 include/ceed/jit-source/utils/ceed-mat3.h create mode 100644 include/ceed/jit-source/utils/ceed-vec.h diff --git a/include/ceed/jit-source/utils/ceed-mat2.h b/include/ceed/jit-source/utils/ceed-mat2.h new file mode 100644 index 0000000000..175a834838 --- /dev/null +++ b/include/ceed/jit-source/utils/ceed-mat2.h @@ -0,0 +1,13 @@ +// Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. +// All Rights Reserved. See the top-level LICENSE and NOTICE files for details. +// +// SPDX-License-Identifier: BSD-2-Clause +// +// This file is part of CEED: http://github.com/ceed + +/// @file +/// QFunction helper functions for 2x2 Matrix operations +#ifndef CEED_MAT2_HELPER_H +#define CEED_MAT2_HELPER_H + +#endif // CEED_MAT2_HELPER_H diff --git a/include/ceed/jit-source/utils/ceed-mat3.h b/include/ceed/jit-source/utils/ceed-mat3.h new file mode 100644 index 0000000000..c0b0fad640 --- /dev/null +++ b/include/ceed/jit-source/utils/ceed-mat3.h @@ -0,0 +1,13 @@ +// Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. +// All Rights Reserved. See the top-level LICENSE and NOTICE files for details. +// +// SPDX-License-Identifier: BSD-2-Clause +// +// This file is part of CEED: http://github.com/ceed + +/// @file +/// QFunction helper functions for 3x3 Matrix operations +#ifndef CEED_MAT3_HELPER_H +#define CEED_MAT3_HELPER_H + +#endif // CEED_MAT3_HELPER_H diff --git a/include/ceed/jit-source/utils/ceed-vec.h b/include/ceed/jit-source/utils/ceed-vec.h new file mode 100644 index 0000000000..eddd6d657e --- /dev/null +++ b/include/ceed/jit-source/utils/ceed-vec.h @@ -0,0 +1,13 @@ +// Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. +// All Rights Reserved. See the top-level LICENSE and NOTICE files for details. +// +// SPDX-License-Identifier: BSD-2-Clause +// +// This file is part of CEED: http://github.com/ceed + +/// @file +/// QFunction helper functions for vector operations +#ifndef CEED_VECTOR_HELPER_H +#define CEED_VECTOR_HELPER_H + +#endif // CEED_VECTOR_HELPER_H