| #
6ffe77ea
|
| 12-May-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-05-03/cleanup-makefiles' into 'main'
remove unneeded stuff from makefiles
See merge request petsc/petsc!5211
|
| #
7bb670c6
|
| 03-May-2022 |
Barry Smith <bsmith@mcs.anl.gov> |
Add -include */petscdir.mk to makefile that lacked it
for i in `git ls-files | grep makefile | xargs grep -L petscdir.mk`; do echo $i ; str=`echo $i |sed -e 's?[-a-zA-Z0-9]*/?../?g' -e 's?makef
Add -include */petscdir.mk to makefile that lacked it
for i in `git ls-files | grep makefile | xargs grep -L petscdir.mk`; do echo $i ; str=`echo $i |sed -e 's?[-a-zA-Z0-9]*/?../?g' -e 's?makefile?petsckdir.mk?g'` ; cp $i tmp echo "-include $str" > $i cat tmp >> $i done
Commit-type: makefile, housekeeping /spend 15m
show more ...
|
| #
f97672e5
|
| 03-May-2022 |
Barry Smith <bsmith@mcs.anl.gov> |
remove garbage from makefiles
Including * unused FLAGS variables * All: lib that did not work * stray blank lines etc
Commit-type: housekeeping /spend 1h
|
| #
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 ...
|
| #
420b78f2
|
| 09-Sep-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jed/rm-distutils' into 'main'
config: remove distutils from build
See merge request petsc/petsc!4253
|
| #
becf0a19
|
| 24-Aug-2021 |
Jed Brown <jed@jedbrown.org> |
config: remove distutils from build
distutils is deprecated and will be removed in Python-3.12:
https://www.python.org/dev/peps/pep-0632/
Most features carry over readily with sysconfig (part of
config: remove distutils from build
distutils is deprecated and will be removed in Python-3.12:
https://www.python.org/dev/peps/pep-0632/
Most features carry over readily with sysconfig (part of minimal python, unlike distutils, which is often an optional package). One exception is distutils.sysconfig.parse_makefile, which is more full-featured than sysconfig._parse_makefile (a private method that exists in python 2.7 and all tested python 3 versions). Specifically, _parse_makefile() cannot handled lines continued with trailing backslash (\) and thus we must forbid continuations for DIRS and SOURCE* lines -- just use a line as long as it needs to be. This system will hopefully be renovated anyway.
Commit-type: portability
show more ...
|
| #
984ba02c
|
| 27-Aug-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jacobf/2021-05-18/petscdevice-context' into 'main'
Feature: PetscDeviceContext
See merge request petsc/petsc!3994
|
| #
030f984a
|
| 18-May-2021 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
Added PetscDevice to manage interaction and configuration of available devices.
Added PetscDeviceContext class to manage stream interactions for CUDA and HIP device backends. The new class is design
Added PetscDevice to manage interaction and configuration of available devices.
Added PetscDeviceContext class to manage stream interactions for CUDA and HIP device backends. The new class is designed to facilitate a fork-join parallelization model for asynchronous compute.
show more ...
|
| #
817aff64
|
| 26-Feb-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'dalcinl/vendor-libyaml' into 'master'
Vendor LibYAML
See merge request petsc/petsc!3652
|
| #
f996e368
|
| 22-Feb-2021 |
Lisandro Dalcin <dalcinl@gmail.com> |
YAML: Move YAML options implementation sources closer to related sources
|
| #
3b8a4d5d
|
| 16-Dec-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'haplav/feature-petschavepackage' into 'master'
add PetscHasExternalPackage() parsing PETSC_HAVE_PACKAGES
See merge request petsc/petsc!3470
|
| #
60fbe2be
|
| 16-Dec-2020 |
Vaclav Hapla <vaclav.hapla@erdw.ethz.ch> |
add PetscHasExternalPackage() parsing PETSC_HAVE_PACKAGES
|
| #
32f47243
|
| 16-Dec-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'scott/hip-sys-vec' into 'master'
Implementation of HIP for sys and vec packages
See merge request petsc/petsc!3056
|
| #
59af0bd3
|
| 16-Dec-2020 |
Scott Kruger <scott.e.kruger@gmail.com> |
Implementation of HIP for sys and vec packages
This implements the vec functionality including tests. In the sys level, we handle the initialization issues, but it is tested at the vec level.
Works
Implementation of HIP for sys and vec packages
This implements the vec functionality including tests. In the sys level, we handle the initialization issues, but it is tested at the vec level.
Works with ROCm 3.9.
show more ...
|
| #
c01492a8
|
| 03-Sep-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jczhang/fix-cupminit-manpage' into 'master'
Add manpages for PetscCUDAInitialize/PetscHIPInitialize
See merge request petsc/petsc!3115
|
| #
3c7e804f
|
| 29-Aug-2020 |
Junchao Zhang <jczhang@mcs.anl.gov> |
Add manpages for PetscCUDAInitialize/PetscHIPInitialize
|
| #
fd2eec0d
|
| 23-Aug-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jczhang/add-kokkos-init' into 'master'
Add Kokkos initialization
See merge request petsc/petsc!3048
|
| #
c2b86a48
|
| 19-Aug-2020 |
Junchao Zhang <jczhang@mcs.anl.gov> |
Add Kokkos initialization
|
| #
b0b4b231
|
| 18-Jun-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/maint'
|
| #
16dbf1e5
|
| 18-Jun-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/fix-elemental-deadlock' into 'maint'
MATELEMENTAL deadlock when first Mat is on a subcommunicator
See merge request petsc/petsc!2862
|
| #
540e20f2
|
| 14-Jun-2020 |
Pierre Jolivet <pierre.jolivet@enseeiht.fr> |
Fix a deadlock with MATELEMENTAL
|
| #
4da3aa2f
|
| 13-Nov-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'maint'
|
| #
f7a04a53
|
| 13-Nov-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jose/cuda-visibility/maint' into 'maint'
Fix visibility issues with CUDA
See merge request petsc/petsc!2282
|
| #
7fd2f626
|
| 13-Nov-2019 |
Jose E. Roman <jroman@dsic.upv.es> |
Fix visibility issues with CUDA
- VecSet_SeqCUDA() called from densecuda.cu - PetscCUBLASInitializedHandle() should be declared PETSC_EXTERN
|