| 1d5e3c82 | 19-Sep-2019 |
Jed Brown <jed@jedbrown.org> |
tests/README.md: remove trailing whitespace
[ci skip] |
| 96d10413 | 19-Sep-2019 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #353 from CEED/jeremy/xsmm-pkgconfig
Makefile - Detect MKLROOT for LIBXSMM linking |
| 31f59a30 | 19-Sep-2019 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #358 from CEED/jeremy/xsmm-default-fix
XSMM - drop unused tensor contract fallback when C != 1 |
| 07a02837 | 19-Sep-2019 |
Jed Brown <jed@jedbrown.org> |
Clean up string processing code smells; -Wstringop-truncation
This pattern is detected by gcc-9 at high optimization:
warning: ‘strncpy’ output truncated before terminating nul copying as many byte
Clean up string processing code smells; -Wstringop-truncation
This pattern is detected by gcc-9 at high optimization:
warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] 87 | strncpy(source_copy, source, strlen(source)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
show more ...
|
| 3c83ce1d | 19-Sep-2019 |
Jed Brown <jed@jedbrown.org> |
Makefile: add flags to config.mk and add NVCC_CXX
CUDA usually does not support the latest gcc, but an older version C++ compiler is only needed internally by nvcc. NVCC_CXX allows the user to spec
Makefile: add flags to config.mk and add NVCC_CXX
CUDA usually does not support the latest gcc, but an older version C++ compiler is only needed internally by nvcc. NVCC_CXX allows the user to specify a compatible C++ compiler for CUDA while still using a modern release for *.cpp sources.
show more ...
|
| a815d94b | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Makefile - Improve description for MKL |
| 8cce741b | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Tests - fix t302 for C/Fortran interoperability |
| ea970691 | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Tests - add t211, blocked restr where libCEED owns pointer |
| 144df584 | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Tests - add t306, test basis GetNumNodes GetNumQuadraturePoints |
| 5a86f033 | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Tests - add t210, restriction view |
| 9f4513df | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Tests - Add tests for all CeedVector access issues |
| 1134a487 | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Tests - add identity with size>1 test |
| a6ce9a80 | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
XSMM - Minor style cleanup |
| 71c1ae0c | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
XSMM - drop unused tensor contract fallback when C != 1 |
| 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 ...
|
| 3db8467c | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Makefile - Only add -L -rpath for MKL if MKLROOT defined |
| 22e61f76 | 18-Sep-2019 |
Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com> |
Merge pull request #355 from CEED/jeremy/colo-typo
Tests - Fix colo typo in tests |
| b300f92c | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Tests - Fix colo typo in tests |
| fe751c7b | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Makefile - add MKL -rpath flag |
| 683be666 | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Makefile - add MKL -L flag |
| 00723591 | 18-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Makefile - improve MKL check |
| 5462ed45 | 17-Sep-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Makefile - Detect MKLROOT for LIBXSMM linking |
| 0219ea01 | 17-Sep-2019 |
Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com> |
Add Identity QFunctions (#279)
* QFunction - add initial identity qfunction
* Identity - preformance optimization and add ctx memory free
* QFunction - Improve documentation and clean up destr
Add Identity QFunctions (#279)
* QFunction - add initial identity qfunction
* Identity - preformance optimization and add ctx memory free
* QFunction - Improve documentation and clean up destroy
* Doc - Improve identity QF and Operator documentation
* Gallery - doc and typo fixes
show more ...
|
| 004fb592 | 17-Sep-2019 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #348 from CEED/jed/operator-validate-input
CeedOperatorSetField: validate that each input is non-NULL |
| 8b067b84 | 17-Sep-2019 |
Jed Brown <jed@jedbrown.org> |
CeedOperatorSetField: validate that each input is non-NULL
It's easy to accidentally pass uninitialized objects and leads to far more confusing errors later. |