| d77c2f5d | 08-Mar-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
internal - add some missing CeedCall |
| 6e536b99 | 08-Mar-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
interface - add Ceed*ReturnCeed |
| 9a25c351 | 05-Mar-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
internal - remove some extra void* casts |
| 22070f95 | 23-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
internal - more updates for const |
| f8608ea8 | 23-Feb-2024 |
Jed Brown <jed@jedbrown.org> |
sycl: resolve const variance |
| 9d61c3a3 | 23-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
minor - tidy LoadSourceToBuffer internals |
| f8d308fa | 23-Feb-2024 |
Jed Brown <jed@jedbrown.org> |
internal: const for source paths
Add const to CeedQFunctionLoadSourceToBuffer output argument. If we had Result, this would look like
let const source_buffer = CeedQFunctionLoadSourceToBuffer()?;
internal: const for source paths
Add const to CeedQFunctionLoadSourceToBuffer output argument. If we had Result, this would look like
let const source_buffer = CeedQFunctionLoadSourceToBuffer()?;
The caller is free to cast in the const when passing the output variable if they want this semantic:
let mut source_buffer = CeedQFunctionLoadSourceToBuffer()?;
show more ...
|
| 34ffed21 | 23-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
internal - const for CeedQFunctionGetSourcePath |
| 7d023984 | 23-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
backend - add const to QF name acessor |
| 6f8994e9 | 23-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
interface - add const to GetName functions |
| ab747706 | 22-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
qf/op - add QFunction/OperatorFieldGetData |
| 1203703b | 22-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
internal - reduce reaching into private structs |
| ef7f882e | 22-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1482 from CEED/zach/operator-is-at-points
Add `CeedOperatorIsAtPoints` |
| 2a3ff1c9 | 22-Feb-2024 |
Zach Atkins <zach.atkins@colorado.edu> |
Use `CeedOperatorIsAtPoints` instead of private data member |
| 6e432cbe | 22-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
internal - should error when trying to use QF flops, not retrieve |
| b594f9fa | 22-Feb-2024 |
Zach Atkins <zach.atkins@colorado.edu> |
Add `CeedOperatorIsAtPoints` |
| 9463e855 | 20-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
op - add CeedOperatorHasTensorBases |
| 249f8407 | 20-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
minor - use CeedSize_FMT and similar changes |
| 701e7d35 | 16-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - use CeedSize for vec len checks |
| 72e72e0e | 10-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1463 from CEED/jeremy/memcheck-strides
CEED_STRIDES_BACKEND related updates |
| 56c48462 | 05-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - fix signature of GetLayout |
| 22eb1385 | 05-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - add CeedElemRestriction[Get,Set]LLayout |
| 972f909d | 02-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - expand note about CEED_STRIDES_BACKEND |
| 2247a93f | 10-Feb-2024 |
Rezgar Shakeri <42816410+rezgarshakeri@users.noreply.github.com> |
CeedMatrixPseudoinverse utility function (#1251)
* Added CeedMatrixPseudoinverse utility and use it CeedBasisGetCollocatedGrad
* Used pseudoinverse utility in CeedBasisApplyAtPoints
* Update d
CeedMatrixPseudoinverse utility function (#1251)
* Added CeedMatrixPseudoinverse utility and use it CeedBasisGetCollocatedGrad
* Used pseudoinverse utility in CeedBasisApplyAtPoints
* Update description of CeedMatrixPseudoinverse function
Co-authored-by: Jeremy L Thompson <jeremy@jeremylt.org>
* Used pseudoinverse utility in CeedBasisCreateProjectionMatrices
* Updated inline comments
* Added inline comment
* Round matrix-matrix product to zero in CeedBasisCreateProjectionMatrices
* increased tolerance in ex1-volume/src/main.rs
---------
Co-authored-by: Jeremy L Thompson <jeremy@jeremylt.org>
show more ...
|
| be9c6463 | 08-Feb-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
op - CeedOperatorGetFieldByName don't error if field not found |