Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0447023
Add support for factorization in create_new_algorithm.sh
Oct 21, 2019
cda40b6
fix sellp read
yhmtsai Oct 29, 2019
932fbe1
fix ell error on small mtx and flexble warp_size
yhmtsai Oct 30, 2019
ec4a3ab
Fix small typo in the stencil examples
upsj Nov 13, 2019
4db298c
Improve CSR strategies
Nov 12, 2019
db622a9
Review update
Nov 12, 2019
a942a89
Review update and additional fixes
Nov 13, 2019
29bda33
Review update
Nov 13, 2019
638db8c
Fix GKO_NOT_SUPPORTED, so it behaves as expected
Nov 13, 2019
f0d8e2d
Review update: fix doxygen comment for GKO_NOT_SUPPORTED
Nov 13, 2019
9fe7165
Add `GKO_ASSERT_EQ` assertion.
Nov 27, 2019
6e88654
Throw ValueMismatch instead of BadDimension for `GKO_ASSERT_EQ`.
Nov 27, 2019
2f671da
replace GKO_ENSURE_IN_BOUNDS by GKO_ASSERT_EQ
upsj Nov 18, 2019
8f3c8cb
add tests for GKO_ASSERT_EQ
upsj Nov 18, 2019
65ec1ae
fix dense bounds check
upsj Nov 19, 2019
de97319
revert bounds check changes for dense.hpp
upsj Nov 19, 2019
e308255
Improve update_header script so it does not stop `make`
Nov 15, 2019
89949c7
Further improve the update_ginkgo_header.sh script
Nov 18, 2019
bbcd2e4
Review Update
Nov 18, 2019
ba452f1
update git-cmake-format source repository
upsj Nov 25, 2019
6fce256
Update all versions to v1.1.1.
Nov 27, 2019
cf678b1
Add Changelog
Nov 27, 2019
784aa6e
Create a new macro `GKO_VERSION_STR` to facilitate version bumping.
Nov 27, 2019
d4afd1b
Install Ginkgo and launch `test_install` for all jobs.
Nov 28, 2019
10da811
Fix missing `}` for `SparsityCsr` in `test_install`.
Nov 28, 2019
8f70a7c
Fix some issues pointed by sonarqube.
Nov 28, 2019
2b75262
Fix test_install with PAPI.
Nov 28, 2019
1dbcef9
Fix documentation issues and add a Jacobi documentation group.
Nov 29, 2019
c8ec186
Update changelog with the recent changes done for this PR.
Nov 29, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Create a new macro GKO_VERSION_STR to facilitate version bumping.
  • Loading branch information
Terry Cojean committed Nov 27, 2019
commit 784aa6ea0e7f0486730d9a3dda4e03fe32d17a53
6 changes: 3 additions & 3 deletions core/device_hooks/cuda_hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ namespace gko {

version version_info::get_cuda_version() noexcept
{
// We just return 1.1.1 with a special "not compiled" tag in placeholder
// modules.
return {1, 1, 1, "not compiled"};
// We just return the version with a special "not compiled" tag in
// placeholder modules.
return {GKO_VERSION_STR, "not compiled"};
}


Expand Down
6 changes: 3 additions & 3 deletions core/device_hooks/omp_hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ namespace gko {

version version_info::get_omp_version() noexcept
{
// We just return 1.1.1 with a special "not compiled" tag in placeholder
// modules.
return {1, 1, 1, "not compiled"};
// We just return the version with a special "not compiled" tag in
// placeholder modules.
return {GKO_VERSION_STR, "not compiled"};
}


Expand Down
6 changes: 3 additions & 3 deletions core/device_hooks/reference_hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ namespace gko {

version version_info::get_reference_version() noexcept
{
// We just return 1.1.1 with a special "not compiled" tag in placeholder
// modules.
return {1, 1, 1, "not compiled"};
// We just return the version with a special "not compiled" tag in
// placeholder modules.
return {GKO_VERSION_STR, "not compiled"};
}


Expand Down
1 change: 1 addition & 0 deletions include/ginkgo/config.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define GKO_VERSION_MINOR @Ginkgo_VERSION_MINOR@
#define GKO_VERSION_PATCH @Ginkgo_VERSION_PATCH@
#define GKO_VERSION_TAG "@Ginkgo_VERSION_TAG@"
#define GKO_VERSION_STR @Ginkgo_VERSION_MAJOR@, @Ginkgo_VERSION_MINOR@, @Ginkgo_VERSION_PATCH@
// clang-format on

/*
Expand Down