Skip to content

Commit a4c219a

Browse files
committed
use update containers and tests
now uses PETSc 3.24.1 and improved patch test
1 parent dba7d66 commit a4c219a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ variables:
1212
GIT_SUBMODULE_STRATEGY: normal
1313
# Shortcut names
1414
MARC_VERSION: '2025.1'
15-
PETSC_GCC_LATEST: '2025.09.30'
16-
PETSC_ONEAPI_LATEST: '2025.09.30'
15+
PETSC_GCC_LATEST: '2025.11.13'
16+
PETSC_ONEAPI_LATEST: '2025.11.13'
1717
PYTHON_LATEST: '2025.06.05'
1818

1919
####################################################################################################

PRIVATE

src/mesh/discretization_mesh.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ subroutine build_nodes_and_connectivity(x_n, p_s)
561561
#if (PETSC_VERSION_MINOR>24 || (PETSC_VERSION_MINOR==24 && PETSC_VERSION_SUBMINOR>=1))
562562
PetscCall(DMPlexGetHeightStratum(coordDM, 0_pPETSCINT, cellStart, cellEnd, ierr))
563563
PetscCall(DMPlexGetCellType(coordDM, cellStart, cell_type, ierr))
564-
node_map = PETSc_to_VTK_node_order(cell_type, p_s)
564+
node_map = PETSc_to_VTK_node_order(cell_type, int(p_s))
565565

566566
allocate(T_e(nCellNodes, cellEnd - cellStart), source = -1_pPETSCINT)
567567
do cell = cellStart, cellEnd - 1_pPETSCINT

0 commit comments

Comments
 (0)