| ceed-qfunction.c (dc1dbf0744997d47eb98656f475bfd131b09dcf8) | ceed-qfunction.c (418fb8c26cd03fc44256773f44bb9ece8ec63e5f) |
|---|---|
| 1// Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at 2// the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights 3// reserved. See files LICENSE and NOTICE for details. 4// 5// This file is part of CEED, a collection of benchmarks, miniapps, software 6// libraries and APIs for efficient high-order finite element and spectral 7// element discretizations for exascale applications. For more information and 8// source code availability see http://github.com/ceed. --- 264 unchanged lines hidden (view full) --- 273**/ 274 275int CeedQFunctionGetContext(CeedQFunction qf, void* *ctx) { 276 *ctx = qf->ctx; 277 return 0; 278} 279 280/** | 1// Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at 2// the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights 3// reserved. See files LICENSE and NOTICE for details. 4// 5// This file is part of CEED, a collection of benchmarks, miniapps, software 6// libraries and APIs for efficient high-order finite element and spectral 7// element discretizations for exascale applications. For more information and 8// source code availability see http://github.com/ceed. --- 264 unchanged lines hidden (view full) --- 273**/ 274 275int CeedQFunctionGetContext(CeedQFunction qf, void* *ctx) { 276 *ctx = qf->ctx; 277 return 0; 278} 279 280/** |
| 281 @brief Determine if Fortran interface was used 282 283 @param qf CeedQFunction 284 @param[out] fortranstatus Variable to store Fortran status 285 286 @return An error code: 0 - success, otherwise - failure 287 288 @ref Advanced 289**/ 290 291int CeedQFunctionGetFortranStatus(CeedQFunction qf, bool *fortranstatus) { 292 *fortranstatus = qf->fortranstatus; 293 return 0; 294} 295 296/** |
|
| 281 @brief Get backend data of a CeedQFunction 282 283 @param qf CeedQFunction 284 @param[out] data Variable to store data 285 286 @return An error code: 0 - success, otherwise - failure 287 288 @ref Advanced --- 172 unchanged lines hidden --- | 297 @brief Get backend data of a CeedQFunction 298 299 @param qf CeedQFunction 300 @param[out] data Variable to store data 301 302 @return An error code: 0 - success, otherwise - failure 303 304 @ref Advanced --- 172 unchanged lines hidden --- |