History log of /libCEED/rust/libceed-sys/c-src/backends/blocked/ceed-blocked.c (Results 26 – 50 of 65)
Revision Date Author Comments
# 7f565272 09-Apr-2021 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Merge pull request #735 from CEED/jeremy/style-guide

Style Unification


# d1d35e2f 09-Apr-2021 jeremylt <thompson.jeremy.luke@gmail.com>

style - updating C variable style


# 874019bc 31-Mar-2021 Jed Brown <jed@jedbrown.org>

Merge pull request #716 from CEED/jed/install-backend.h

Jed/install backend.h


# ec3da8bc 26-Mar-2021 Jed Brown <jed@jedbrown.org>

Install install backend headers under include/ceed/

This makes it possible to distribute source plugins that provide
additional backends. It's also used in MFEM, perhaps temporarily.

Deprecate ceed

Install install backend headers under include/ceed/

This makes it possible to distribute source plugins that provide
additional backends. It's also used in MFEM, perhaps temporarily.

Deprecate ceed-backend.h, which was not previously installed, but some
users accessed it from an in-place build.

Also install CUDA and HIP headers that allow users to provide CUfunction
and hipFunction_t.

Co-authored-by: Jeremy L. Thompson <jeremy.thompson@colorado.edu>
Requested-by: Andrew T. Barker <barker29@llnl.gov>

show more ...


# e2f04181 31-Mar-2021 Andrew T. Barker <barker29@llnl.gov>

Full assembly of CeedOperator (#712)

* Add CeedOperatorLinearFullAssemble() to explicitly assemble a CeedOperator

The output format is a stream of (row, column, value) triples, which client
code

Full assembly of CeedOperator (#712)

* Add CeedOperatorLinearFullAssemble() to explicitly assemble a CeedOperator

The output format is a stream of (row, column, value) triples, which client
code can use to assemble a sparse matrix by adding the values in the
appropriate places.

* Add full assembly test for triangular mesh, t563-operator.c, which is analogous to t536-operator.c

* assembly: change interface to separate nonzero structure from values

* assembly: add potential backends for CeedOperatorLinearAssemble, CeedOperatorLinearAssemblySymbolic

* assembly: use CeedMatrixMultiply() instead of hand-rolled duplicated code

This also involves switching some arrays from column-major ordering to
row-major ordering.

* Remove CeedMatrixMultiply from ceed-impl.h because it is already in ceed-backend.h

* assembly: modify use of fallback resource

* operator - use new error codes in full assembly

* style - minor

* operator - switch default fallback to none

* operator - fix fallback for full assembly

* operator - fix fallback usage

* operator - fix fallback for digonal assembly

* avx - revert bug

* avx - revert bug

Co-authored-by: jeremylt <thompson.jeremy.luke@gmail.com>

show more ...


# e15f9bd0 20-Mar-2021 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Error Handling Improvement [fix #696] (#691)

* Operator - add operator/qfunction field compatibility checks

* QFunction - do not allow adding fields to QFunction in use with an operator

* Exam

Error Handling Improvement [fix #696] (#691)

* Operator - add operator/qfunction field compatibility checks

* QFunction - do not allow adding fields to QFunction in use with an operator

* Examples - add some extra exclusion markers in ceed example

* error - add error enum

* error - update error enum names and numbering

* error - use CEED_ERROR_BACKEND in all backend errors

* error - begin classifying interface errors

* error - update backends to use CEED_ERROR_SUCCESS and CeedChkBackend

* error - use new errors in gallery

* error - add some unsaved modifications

* error - improve documentation

* error - define CEED_ERROR_SUCCESS in GPU JiT; we really should have a common header to pipe defines to the JiT code

* error - more error code editing

* error - fix error string

* operator - fix setting field qpts

* basis - add input/output dimension error checking

* python - move basis utility methods to ceed object, no basis required or used

* python - force exit with negative error code

* make style-py

* rust - initial work to add error handling logic

* rust - add ceed.resource method

* rust - add results for methods that may fail

* rust - also format doctests

* minor - drop unused CeedChk()

* error - rename terminal/nonterminal to major/minor

* rust - set ErrorStore as default errorhandler

* python - revert error handing change for python

* python - use success error code from C bindings

* error - only upgrade error code in backend if positive

show more ...


# 3d576824 29-Jan-2021 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

headers - clearify includes to not rely on transitive includes (#701)

* headers - clearify includes to not rely on transitive includes

* style - add header recommendations from 'include-what-you-

headers - clearify includes to not rely on transitive includes (#701)

* headers - clearify includes to not rely on transitive includes

* style - add header recommendations from 'include-what-you-use'

* style - apply 'include-what-you-use' changes to CUDA backends

* style - 'include-what-you-use' for hip backends

* style - drop ceed.h includes in gallery qf source

* docs - add dev notes for header files

* style - header style and alphabetize

show more ...


# 14b01f2c 16-Dec-2020 Jed Brown <jed@jedbrown.org>

Merge pull request #674 from CEED/jed/static-link

static link


# 1d013790 14-Dec-2020 Jed Brown <jed@jedbrown.org>

Add static library (libceed.a) [resolve #670]

We no longer use __attribute__((constructor)) to register backends and
gallery implementations because we can't ensure that the symbols are
linked into

Add static library (libceed.a) [resolve #670]

We no longer use __attribute__((constructor)) to register backends and
gallery implementations because we can't ensure that the symbols are
linked into applications that link the static library. We've switched to
creating CeedRegisterAll() and CeedQFunctionRegisterAll(), which are
called automatically by the library, and call weak symbols to register
all the backend/gallery implementations. This strategy was partly
motivated by not wanting to have preprocessor macros describing what is
available, and the associated need to recompile rather than just relink
when those macros change.

So we now have backends/ceed-backend-list.h that declares all the
backends wrapped in a macro. It is included by
backends/ceed-backend-weak.c to create weak definitions of all the
backends. In the makefile, we sort so this comes last when linking a
shared or static library, and thus these weak symbols will only be
picked up if they were not defined by the actual backend source files.
The same header is included (with different macro wrapping) in
interface/ceed-register.c, where CeedRegisterAll() is defined.

To add a new backend, one must do essentially the same registration
strategy as in the past, plus add one line to the common
ceed-backend-list.h.

show more ...


# 77ad9f29 15-Jul-2020 nbeams <246972+nbeams@users.noreply.github.com>

Merge branch 'main' into natalie/hip-ref-v2


# 3f1466f8 26-Jun-2020 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Merge pull request #561 from CEED/jeremy/is-deterministic

Ceed - add IsDeterministic


# 5f67fade 26-Jun-2020 Jeremy L Thompson <thompson.jeremy.luke@gmail.com>

spellcheck


# 9525855c 17-Jun-2020 Jeremy L Thompson <thompson.jeremy.luke@gmail.com>

Ceed - add IsDeterministic


# 65e7b5e8 17-Dec-2019 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Merge pull request #431 from CEED/jeremy/diag-refactor

Operator - move AssembleDiagonal to fallback


# f10650af 17-Dec-2019 jeremylt <jeremy.thompson@colorado.edu>

CPU - add comment blocks at top of all backend functions


# c042f62f 18-Sep-2019 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Codecov Exceptions (#356)

* Tests - Add lcov exceptions to t304-f/t305-f

* Backends - add lcov exceptions for error messages intentionally not tested

* Interface - add lcov exceptions for erro

Codecov Exceptions (#356)

* Tests - Add lcov exceptions to t304-f/t305-f

* Backends - add lcov exceptions for error messages intentionally not tested

* Interface - add lcov exceptions for error messages intentionally not tested

* Tests - additional lcov exceptions

show more ...


# bd2096da 18-Jul-2019 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Merge pull request #298 from CEED/jeremy/ref-priority-fix

Fix ref backend priorities


# 706bc5e6 18-Jul-2019 jeremylt <jeremy.thompson@colorado.edu>

backends: fix ref backend priorities


# 04ad0729 12-Jul-2019 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Merge pull request #295 from CEED/cpu_priority_fix

BugFix - Resource strcmp in LIBXSMM backends


# 6f7d248d 12-Jul-2019 jeremylt <jeremy.thompson@colorado.edu>

Update CPU backends to give default for /cpu/self/***


# 1856ee7c 29-May-2019 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Merge pull request #239 from CEED/decorator

Add delegates for specific objects


# a4999edd 24-May-2019 jeremylt <jeremy.thompson@colorado.edu>

Update Ceed Delegate refrencing


# d4fd2798 18-May-2019 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Merge pull request #228 from CEED/rstr-block

Restriction Block


# 89c6efa4 03-May-2019 jeremylt <jeremy.thompson@colorado.edu>

Use blocking in optimized serial backends


# 486febe6 15-May-2019 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Merge pull request #224 from CEED/mem-zero

Check QFunction Output Vecs


123