Commit 4678668
tcojean
Merge Release 1.3.0 for master
The Ginkgo team is proud to announce the new minor release of Ginkgo version
1.3.0. This release brings CUDA 11 support, changes the default C++ standard to
be C++14 instead of C++11, adds a new Diagonal matrix format and capacity for
diagonal extraction, significantly improves the CMake configuration output
format, adds the Ginkgo paper which got accepted into the Journal of Open Source
Software (JOSS), and fixes multiple issues.
Supported systems and requirements:
+ For all platforms, cmake 3.9+
+ Linux and MacOS
+ gcc: 5.3+, 6.3+, 7.3+, all versions after 8.1+
+ clang: 3.9+
+ Intel compiler: 2017+
+ Apple LLVM: 8.0+
+ CUDA module: CUDA 9.0+
+ HIP module: ROCm 2.8+
+ Windows
+ MinGW and Cygwin: gcc 5.3+, 6.3+, 7.3+, all versions after 8.1+
+ Microsoft Visual Studio: VS 2017 15.7+
+ CUDA module: CUDA 9.0+, Microsoft Visual Studio
+ OpenMP module: MinGW or Cygwin.
The current known issues can be found in the [known issues page](https://github.com/ginkgo-project/ginkgo/wiki/Known-Issues).
Additions:
+ Add paper for Journal of Open Source Software (JOSS). [#479](#479)
+ Add a DiagonalExtractable interface. [#563](#563)
+ Add a new diagonal Matrix Format. [#580](#580)
+ Add Cuda11 support. [#603](#603)
+ Add information output after CMake configuration. [#610](#610)
+ Add a new preconditioner export example. [#595](#595)
+ Add a new cuda-memcheck CI job. [#592](#592)
Changes:
+ Use unified memory in CUDA debug builds. [#621](#621)
+ Improve `BENCHMARKING.md` with more detailed info. [#619](#619)
+ Use C++14 standard instead of C++11. [#611](#611)
+ Update the Ampere sm information and CudaArchitectureSelector. [#588](#588)
Fixes:
+ Fix documentation warnings and errors. [#624](#624)
+ Fix warnings for diagonal matrix format. [#622](#622)
+ Fix criterion factory parameters in CUDA. [#586](#586)
+ Fix the norm-type in the examples. [#612](#612)
+ Fix the WAW race in OpenMP is_sorted_by_column_index. [#617](#617)
+ Fix the example's exec_map by creating the executor only if requested. [#602](#602)
+ Fix some CMake warnings. [#614](#614)
+ Fix Windows building documentation. [#601](#601)
+ Warn when CXX and CUDA host compiler do not match. [#607](#607)
+ Fix reduce_add, prefix_sum, and doc-build. [#593](#593)
+ Fix find_library(cublas) issue on machines installing multiple cuda. [#591](#591)
+ Fix allocator in sellp read. [#589](#589)
+ Fix the CAS with HIP and NVIDIA backends. [#585](#585)
Deletions:
+ Remove unused preconditioner parameter in LowerTrs. [#587](#587)
Related PR: #627308 files changed
Lines changed: 9368 additions & 2196 deletions
File tree
- .github/workflows
- benchmark
- utils
- cmake
- common
- base
- components
- factorization
- matrix
- preconditioner
- core
- base
- device_hooks
- factorization
- matrix
- synthesizer
- test
- base
- matrix
- utils
- cuda
- base
- components
- factorization
- matrix
- test
- base
- matrix
- solver
- dev_tools/scripts
- doc
- conf
- examples
- joss
- figures
- examples
- adaptiveprecision-blockjacobi
- doc
- custom-logger
- doc
- custom-matrix-format
- custom-stopping-criterion
- doc
- external-lib-interfacing
- ginkgo-overhead
- doc
- ginkgo-ranges
- doc
- ilu-preconditioned-solver
- doc
- inverse-iteration
- doc
- ir-ilu-preconditioned-solver
- doc
- iterative-refinement
- doc
- minimal-cuda-solver
- doc
- mixed-precision-ir
- doc
- nine-pt-stencil-solver
- doc
- papi-logging
- performance-debugging
- doc
- poisson-solver
- doc
- preconditioned-solver
- doc
- preconditioner-export
- data
- doc
- simple-solver-logging
- doc
- simple-solver
- doc
- three-pt-stencil-solver
- doc
- twentyseven-pt-stencil-solver
- doc
- hip
- base
- components
- factorization
- matrix
- test
- base
- matrix
- preconditioner
- include/ginkgo
- core
- base
- factorization
- log
- matrix
- preconditioner
- solver
- stop
- synthesizer
- omp
- matrix
- test/matrix
- reference
- matrix
- test
- matrix
- stop
- test_install
- third_party
- CudaArchitectureSelector
- gflags
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
8 | 14 | | |
9 | 15 | | |
10 | 16 | | |
11 | | - | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
12 | 23 | | |
13 | | - | |
| 24 | + | |
14 | 25 | | |
15 | 26 | | |
16 | | - | |
| 27 | + | |
17 | 28 | | |
18 | 29 | | |
19 | 30 | | |
20 | 31 | | |
21 | 32 | | |
22 | 33 | | |
23 | 34 | | |
24 | | - | |
| 35 | + | |
25 | 36 | | |
26 | 37 | | |
27 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| 25 | + | |
25 | 26 | | |
26 | 27 | | |
27 | 28 | | |
| |||
59 | 60 | | |
60 | 61 | | |
61 | 62 | | |
| 63 | + | |
62 | 64 | | |
63 | 65 | | |
64 | 66 | | |
| |||
84 | 86 | | |
85 | 87 | | |
86 | 88 | | |
| 89 | + | |
87 | 90 | | |
88 | 91 | | |
89 | 92 | | |
| |||
199 | 202 | | |
200 | 203 | | |
201 | 204 | | |
202 | | - | |
| 205 | + | |
203 | 206 | | |
204 | 207 | | |
205 | 208 | | |
| |||
217 | 220 | | |
218 | 221 | | |
219 | 222 | | |
220 | | - | |
| 223 | + | |
221 | 224 | | |
222 | 225 | | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
| 232 | + | |
| 233 | + | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
223 | 265 | | |
224 | 266 | | |
225 | 267 | | |
226 | 268 | | |
227 | 269 | | |
228 | 270 | | |
229 | 271 | | |
230 | | - | |
| 272 | + | |
231 | 273 | | |
232 | 274 | | |
233 | 275 | | |
| |||
238 | 280 | | |
239 | 281 | | |
240 | 282 | | |
241 | | - | |
| 283 | + | |
242 | 284 | | |
243 | | - | |
| 285 | + | |
244 | 286 | | |
245 | 287 | | |
246 | 288 | | |
247 | 289 | | |
248 | 290 | | |
249 | 291 | | |
250 | 292 | | |
251 | | - | |
252 | 293 | | |
253 | 294 | | |
254 | 295 | | |
| |||
258 | 299 | | |
259 | 300 | | |
260 | 301 | | |
261 | | - | |
262 | | - | |
| 302 | + | |
| 303 | + | |
263 | 304 | | |
264 | | - | |
| 305 | + | |
265 | 306 | | |
266 | 307 | | |
267 | 308 | | |
| |||
277 | 318 | | |
278 | 319 | | |
279 | 320 | | |
280 | | - | |
| 321 | + | |
281 | 322 | | |
282 | | - | |
| 323 | + | |
283 | 324 | | |
284 | 325 | | |
285 | 326 | | |
| |||
298 | 339 | | |
299 | 340 | | |
300 | 341 | | |
301 | | - | |
| 342 | + | |
| 343 | + | |
302 | 344 | | |
303 | | - | |
| 345 | + | |
304 | 346 | | |
305 | 347 | | |
306 | | - | |
307 | | - | |
| 348 | + | |
308 | 349 | | |
309 | 350 | | |
| 351 | + | |
310 | 352 | | |
311 | 353 | | |
312 | 354 | | |
| |||
317 | 359 | | |
318 | 360 | | |
319 | 361 | | |
320 | | - | |
321 | | - | |
| 362 | + | |
322 | 363 | | |
323 | | - | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
324 | 387 | | |
325 | 388 | | |
326 | 389 | | |
| |||
336 | 399 | | |
337 | 400 | | |
338 | 401 | | |
339 | | - | |
| 402 | + | |
340 | 403 | | |
341 | | - | |
| 404 | + | |
342 | 405 | | |
343 | 406 | | |
344 | 407 | | |
| |||
357 | 420 | | |
358 | 421 | | |
359 | 422 | | |
360 | | - | |
| 423 | + | |
361 | 424 | | |
362 | | - | |
| 425 | + | |
363 | 426 | | |
364 | 427 | | |
365 | 428 | | |
| |||
377 | 440 | | |
378 | 441 | | |
379 | 442 | | |
380 | | - | |
381 | | - | |
| 443 | + | |
| 444 | + | |
382 | 445 | | |
383 | | - | |
| 446 | + | |
384 | 447 | | |
385 | 448 | | |
386 | | - | |
387 | 449 | | |
388 | 450 | | |
389 | | - | |
390 | | - | |
| 451 | + | |
391 | 452 | | |
392 | 453 | | |
393 | 454 | | |
| |||
397 | 458 | | |
398 | 459 | | |
399 | 460 | | |
400 | | - | |
| 461 | + | |
401 | 462 | | |
402 | | - | |
| 463 | + | |
403 | 464 | | |
404 | 465 | | |
405 | 466 | | |
406 | 467 | | |
407 | | - | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
408 | 488 | | |
409 | 489 | | |
410 | 490 | | |
| |||
839 | 919 | | |
840 | 920 | | |
841 | 921 | | |
| 922 | + | |
| 923 | + | |
| 924 | + | |
| 925 | + | |
| 926 | + | |
| 927 | + | |
| 928 | + | |
| 929 | + | |
| 930 | + | |
| 931 | + | |
| 932 | + | |
| 933 | + | |
| 934 | + | |
| 935 | + | |
| 936 | + | |
| 937 | + | |
| 938 | + | |
| 939 | + | |
| 940 | + | |
842 | 941 | | |
843 | 942 | | |
844 | 943 | | |
| |||
0 commit comments