| #
1c44eed5
|
| 18-Mar-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'stefanozampini/dlpack' into 'main'
improve dlpack support
See merge request petsc/petsc!4858
|
| #
a1f9a5e6
|
| 20-Feb-2022 |
Stefano Zampini <stefano.zampini@gmail.com> |
MatTransposeMatMultNumeric_MPIDense_MPIDense: fix bug for lda
|
| #
b45e3bf4
|
| 17-Feb-2022 |
Stefano Zampini <stefano.zampini@gmail.com> |
Minor
|
| #
eced7cd6
|
| 24-Feb-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jacobf/2022-02-21/checkbadsource-enforce-petsccheck' into 'main'
Enforce PetscCheck() and PetscAssert() usage via checkbadSource
See merge request petsc/petsc!4874
|
| #
54c59aa7
|
| 21-Feb-2022 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
Enforce PetscCheck() and PetscAssert() usage via checkbadSource
|
| #
1241a243
|
| 13-Feb-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jacobf/2022-01-05/c99' into 'main'
Feature: C99 and C++11
See merge request petsc/petsc!4700
|
| #
2c71b3e2
|
| 11-Feb-2022 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
rename PetscAssert() -> PetscCheck() and PetscAssertDebug() -> PetscAssert()
|
| #
9ace16cd
|
| 28-Jan-2022 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
add PetscAssert() and PetscAssertFalse()
|
| #
7d3de750
|
| 12-Jan-2022 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
make PetscInfo() variadic
|
| #
98921bda
|
| 28-Jan-2022 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
SETERRQ[1-9]+ begone
|
| #
c2796d2c
|
| 12-Feb-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'hzhang/matproduct-setalgorithm' into 'main'
update documentation and options database of MatProductSetAlgorithm()
See merge request petsc/petsc!4802
|
| #
3e662e0b
|
| 12-Feb-2022 |
Hong Zhang <hzhang@mcs.anl.gov> |
update documentation and options database of MatProductSetAlgorithm()
|
| #
940e4fdf
|
| 12-Jan-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jacobf/2021-12-09/attribute-format-mat' into 'main'
Feature: Attribute Format - Mat
See merge request petsc/petsc!4634
|
| #
c0aa6a63
|
| 09-Dec-2021 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
applied attribute format fixes to mat headers
|
| #
0baf1215
|
| 20-Oct-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jacobf/2021-09-04/petscdevice-cupminitialization' into 'main'
Replace current CUPM initialization with unified PetscDevice version
See merge request petsc/petsc!4310
|
| #
a4af0cee
|
| 19-Oct-2021 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
- Replace the current CUPM initialization infrastructure with PetscDevice. - Remove -petsc_use_default_null_stream and -[cuda|hip]_synchronize options - Remove PetscCUDASynchronize and PetscHIPSynchr
- Replace the current CUPM initialization infrastructure with PetscDevice. - Remove -petsc_use_default_null_stream and -[cuda|hip]_synchronize options - Remove PetscCUDASynchronize and PetscHIPSynchronize - Remove PetscCUDAInitialize(), PetscCUDAInitializeCheck(), PetscHIPInitialize(), and PetscHIPInitializeCheck() - Remove PetscCUBLASInitializeHandle(), PetscCUSOLVERDnInitializeHandle(), PetscHIPBLASInitializeHandle(), and PetscHIPSOLVERInitializeHandle(). - Remove petsc_gputimer_begin and petsc_gputimer_begin - Add -device_enable, -device_select and -device_view options - Replace -[cuda|hip]_device with split options -device_enable_[cuda|hip] and -device_select_[cuda|hip] - Replace -[cuda|hip]_view with -device_view_[cuda|hip] - Add PetscDeviceInitType - Add PetscDeviceInitialize() and PetscDeviceInitialized() - Add PetscDeviceView()
show more ...
|
| #
6762c164
|
| 15-Sep-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'psanan-release-patch-82973' into 'main'
Developer docs, style: remove rule about using "if (!rank)" and replace all "!rank" usage with "rank == 0"
See merge request petsc/petsc!4146
|
| #
dd400576
|
| 26-Jul-2021 |
Patrick Sanan <patrick.sanan@gmail.com> |
Style: replace "!rank" with "rank == 0"
In SF tutorial ex1 (src/vec/is/sf/tutorials/ex1.c), add parentheses around "rank == 0". This is relevant because ! binds more tightly than +, but == binds les
Style: replace "!rank" with "rank == 0"
In SF tutorial ex1 (src/vec/is/sf/tutorials/ex1.c), add parentheses around "rank == 0". This is relevant because ! binds more tightly than +, but == binds less tightly, so the result of the computation would otherwise change.
show more ...
|
| #
020c69f5
|
| 14-Sep-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'rmills/feature-matgetcolumnreductions' into 'main'
Add MatGetColumnReductions()
See merge request petsc/petsc!4272
|
| #
857cbf51
|
| 30-Aug-2021 |
Richard Tran Mills <rmills@rmills.org> |
Add MatGetColumnSums() and MatGetColumnMeans() (and real and imaginary part variants)
MatGetColumnReductions() now takes a PetscInt so ReductionType or NormType members can be passed. ReductionType
Add MatGetColumnSums() and MatGetColumnMeans() (and real and imaginary part variants)
MatGetColumnReductions() now takes a PetscInt so ReductionType or NormType members can be passed. ReductionType no longer duplicates entries of NormType. Replace MatGetColumnNorms_SeqBAIJ() with MatGetColumnReductions_SeqBAIJ()
show more ...
|
| #
a873a8cd
|
| 26-Jul-2021 |
Sam Reynolds <ser6@pdx.edu> |
Added MatGetColumnReductions(). MatGetColumnNorms() is now a wrapper that calls MatGetColumnReductions().
Made changes requested by Richard.
|
| #
3df9293f
|
| 29-Jun-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/release'
|
| #
129440e4
|
| 29-Jun-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'stefanozampini/release-fixes' into 'release'
Few fixes for release
See merge request petsc/petsc!4123
|
| #
f5ff9c66
|
| 13-Jun-2021 |
Stefano Zampini <stefano.zampini@gmail.com> |
MatGetColumnVector_SeqDenseCUDA: handle case of unallocated device data
|
| #
a8cf78f8
|
| 24-May-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2021-05-16/fix-double-lines' into 'main'
Fix typos in source
See merge request petsc/petsc!3984
|