From 31ab327bc08d9183201115f6f5f26906fcc04dc9 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..058fb669f0 --- /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 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..3ceaf67b16 --- /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 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..2fd610975c --- /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