ceed-impl.h (e6cb4fca5f98bfb30d17a8599499ec279b90b048) ceed-impl.h (73b5a3bf55aeb5ad8a797943274ffe079610ce9e)
1// Copyright (c) 2017-2025, Lawrence Livermore National Security, LLC and other CEED contributors.
2// All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3//
4// SPDX-License-Identifier: BSD-2-Clause
5//
6// This file is part of CEED: http://github.com/ceed
7
8/// @file

--- 82 unchanged lines hidden (view full) ---

91};
92
93struct Ceed_private {
94 const char *resource;
95 Ceed delegate;
96 Ceed parent;
97 ObjDelegate *obj_delegates;
98 int obj_delegate_count;
1// Copyright (c) 2017-2025, Lawrence Livermore National Security, LLC and other CEED contributors.
2// All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3//
4// SPDX-License-Identifier: BSD-2-Clause
5//
6// This file is part of CEED: http://github.com/ceed
7
8/// @file

--- 82 unchanged lines hidden (view full) ---

91};
92
93struct Ceed_private {
94 const char *resource;
95 Ceed delegate;
96 Ceed parent;
97 ObjDelegate *obj_delegates;
98 int obj_delegate_count;
99 Ceed op_fallback_ceed, op_fallback_parent;
99 Ceed op_fallback_ceed;
100 const char *op_fallback_resource;
101 char **jit_source_roots;
102 CeedInt num_jit_source_roots, max_jit_source_roots, num_jit_source_roots_readers;
103 char **jit_defines;
104 CeedInt num_jit_defines, max_jit_defines, num_jit_defines_readers;
105 int (*Error)(Ceed, const char *, int, const char *, int, const char *, va_list *);
106 int (*SetStream)(Ceed, void *);
107 int (*GetPreferredMemType)(CeedMemType *);

--- 286 unchanged lines hidden ---
100 const char *op_fallback_resource;
101 char **jit_source_roots;
102 CeedInt num_jit_source_roots, max_jit_source_roots, num_jit_source_roots_readers;
103 char **jit_defines;
104 CeedInt num_jit_defines, max_jit_defines, num_jit_defines_readers;
105 int (*Error)(Ceed, const char *, int, const char *, int, const char *, va_list *);
106 int (*SetStream)(Ceed, void *);
107 int (*GetPreferredMemType)(CeedMemType *);

--- 286 unchanged lines hidden ---