Skip to content

Commit ad9fae8

Browse files
committed
Commit before the 1.9.5 version.
1 parent 909bb4f commit ad9fae8

File tree

24 files changed

+58
-58
lines changed

24 files changed

+58
-58
lines changed

DEVELOPER_NOTES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-------------------------------------------------------------
2-
Developer notes version 1.9.5_beta : Changes since version 1.9.4 :
2+
Developer notes version 1.9.5 : Changes since version 1.9.4 :
33
-------------------------------------------------------------
44
29/10/24 (TRUST) Major change : No more try/catch in get_champ. Virtual methods has_champ added and can be used !
55
28/10/24 (TRUST) Kokkos : Add -kokkos_openmp configure option to build Kokkos with OpenMP backend instead of serial backend

License.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024, CEA
1+
Copyright (c) 2025, CEA
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.5_beta
1+
1.9.5

Outils/TRIOXDATA/XTriou/objet_u.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2435,7 +2435,7 @@ def gen_doc_base(fr=1):
24352435
\begin{document}
24362436
\title{
24372437
\vspace{5cm}
2438-
\Huge \textbf{TRUST Reference Manual V1.9.5beta} \vspace{0.5cm}}
2438+
\Huge \textbf{TRUST Reference Manual V1.9.5} \vspace{0.5cm}}
24392439
\author{
24402440
\vspace{2cm}
24412441
\LARGE \textbf{Support team: \href{mailto:trust@cea.fr}{trust@cea.fr}} \\

Outils/trustify/doc/extra_rst/parser.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ In a mathematical function, used for example in field definition, it's possible
4949
+---------+----------------------------------------------------------------------------+
5050
| x_GT_y | greater than (returns 1 if :math:`x>y`, else 0) |
5151
+---------+----------------------------------------------------------------------------+
52-
| x_GE_y | greater than or equal to (returns 1 if x$\geq$ y, else 0) |
52+
| x_GE_y | greater than or equal to |
5353
+---------+----------------------------------------------------------------------------+
54-
| x_LT_y | less than (returns 1 if x{\textless}y, else 0) |
54+
| x_LT_y | less than (returns 1 if x<y, else 0) |
5555
+---------+----------------------------------------------------------------------------+
56-
| x_LE_y | less than or equal to (returns 1 if x{\textless}=y, else 0) |
56+
| x_LE_y | less than or equal to |
5757
+---------+----------------------------------------------------------------------------+
5858
| x_MIN_y | returns the smallest of x and y |
5959
+---------+----------------------------------------------------------------------------+
60-
| x_MA\_y | returns the largest of x and y |
60+
| x_MAX_y | returns the largest of x and y |
6161
+---------+----------------------------------------------------------------------------+
6262
| x_MOD_y | modular division of x per y |
6363
+---------+----------------------------------------------------------------------------+

Outils/valgrind/suppressions

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040
fun:_Znwm
4141
fun:_ZN6Kokkos4Impl14SerialInternal9singletonEv
4242
fun:_ZN6Kokkos6Serial15impl_initializeERKNS_22InitializationSettingsE
43+
...
4344
fun:_ZN6Kokkos4Impl16ExecSpaceManager17initialize_spacesERKNS_22InitializationSettingsE
45+
...
4446
fun:_ZN6Kokkos10initializeERiPPc
4547
fun:_ZN8mon_main13init_parallelE*PPc*
4648
fun:_Z10main_TRUST*PPcRP8mon_main*

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ This software is **OpenSource ([BSD license](https://github.com/cea-trust-platfo
66

77
You can visit **[TRUST website](https://cea-trust-platform.github.io/)**
88

9-
# **How to install TRUST-1.9.4 version ?**
9+
# **How to install TRUST-1.9.5 version ?**
1010

1111
### **First method (git configuration)**
1212

1313
```bash
1414
# Check out the sources for TRUST
15-
git clone git@github.com:cea-trust-platform/trust-code.git TRUST-1.9.4
15+
git clone git@github.com:cea-trust-platform/trust-code.git TRUST-1.9.5
1616
# Move to the cloned TRUST folder
17-
cd TRUST-1.9.4
17+
cd TRUST-1.9.5
1818
# Download the required external packages
19-
wget ftp://ftp.cea.fr/pub/TRUST/externalpackages/externalpackages-1.9.4.tar
19+
wget ftp://ftp.cea.fr/pub/TRUST/externalpackages/externalpackages-1.9.5.tar
2020
# or:
21-
# curl ftp://ftp.cea.fr/pub/TRUST/externalpackages/externalpackages-1.9.4.tar > externalpackages-1.9.4.tar
21+
# curl ftp://ftp.cea.fr/pub/TRUST/externalpackages/externalpackages-1.9.5.tar > externalpackages-1.9.5.tar
2222
# Unzip the downloaded external packages folder
23-
tar xf externalpackages-1.9.4.tar
23+
tar xf externalpackages-1.9.5.tar
2424
# Have a look at the available configuration options
2525
./configure -help
2626
# Execute the configure script with your selected options
@@ -41,13 +41,13 @@ type mpicxx
4141

4242
```bash
4343
# Download the sources for TRUST
44-
wget ftp://ftp.cea.fr/pub/TRUST/TRUST/Version1.9.4/TRUST-1.9.4.tar.gz
44+
wget ftp://ftp.cea.fr/pub/TRUST/TRUST/Version1.9.5/TRUST-1.9.5.tar.gz
4545
# or:
46-
# curl ftp://ftp.cea.fr/pub/TRUST/TRUST/Version1.9.4/TRUST-1.9.4.tar.gz > TRUST-1.9.4.tar.gz
46+
# curl ftp://ftp.cea.fr/pub/TRUST/TRUST/Version1.9.5/TRUST-1.9.5.tar.gz > TRUST-1.9.5.tar.gz
4747
# Unzip the downloaded folder
48-
tar xzf TRUST-1.9.4.tar.gz
48+
tar xzf TRUST-1.9.5.tar.gz
4949
# Move to the unziped TRUST folder
50-
cd TRUST-1.9.4
50+
cd TRUST-1.9.5
5151
# Execute the configure script with your selected options
5252
./configure $OPTIONS
5353
```

RELEASE_NOTES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--------------------------------------------------------------------------------------------------
2-
Release notes version 1.9.5_beta : Enhancements, modifications and corrected bugs since version 1.9.4 :
2+
Release notes version 1.9.5 : Enhancements, modifications and corrected bugs since version 1.9.4 :
33
--------------------------------------------------------------------------------------------------
44
20/11/24 (TRUST) Tools : 'trustpy' now becomes 'trustify'. Check the syntax of your dataset with 'trust -trustify my_case.data'. See a more complete usage example in Outils/trustify/doc/examples/hello_world.
55
28/10/24 (TRUST) New feature : Support for Cathare FORT21 format in lata tools and plugins.

bin/admin/lance_test_nuit

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,8 @@ echo "##################"
13841384
echo "# On study cases #"
13851385
echo "##################"
13861386
echo "---> Begin at "`date '+%H:%M:%S %d/%m'`
1387-
etude_activation=1
1387+
# ND je desactive les etudes car souci sur irene
1388+
etude_activation=0
13881389
if [ `date '+%u'` -ge 5 ]
13891390
then
13901391
# le vendredi soir on lance toutes les etudes

bin/admin/liste.machines

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ linux rsync_ssh tache altair-valgrind.intra.cea.fr -limited -FLICA5
33
linux rsync_ssh cible is246427.intra.cea.fr -TrioCFD -semi_opt -without-pdflatex # Ubuntu 24 MF titania
44
linux rsync_ssh tache unitas20-mv-install.intra.cea.fr -all -force_provided_mpich -move-install -disable-valgrind # Ubuntu 20 rack triocfd
55
linux rsync_ssh tache is234617-intel.intra.cea.fr -all -TRUST -TrioCFD -GENEPI3 -STT -PEMFC -FLICA5 -C3D -TRUST_NK -TrioMC -intel23 -disable-plot2d -force_system_mpi -disable-mpi4py -without-visit # Ubuntu 22 TMA TRUST
6-
linux rsync_ssh tache is245198-intel21.intra.cea.fr -all -TRUST -intel21 -disable-plot2d -force_system_mpi -disable-mpi4py -without-visit # Ubuntu 20 TMA EOS titania
6+
linux rsync_ssh tache is245198-intel21.intra.cea.fr -all -TRUST -intel21 -disable-plot2d -force_system_mpi -disable-mpi4py -without-visit # Ubuntu 20 TMA EOS formation titania
77
linux rsync_ssh tache is245198-intel22.intra.cea.fr -all -TRUST -TrioCFD -GENEPI3 -STT -PEMFC -FLICA5 -C3D -TRUST_NK -TrioMC -intel22 -disable-plot2d -force_system_mpi -disable-mpi4py -without-visit # Ubuntu 20 TMA EOS
88
linux rsync_ssh non rockefellia9-build64.intra.cea.fr -all -TrioCFD -build_64_bit -disable-plot2d -without-pdflatex -disable-mpi4py -disable-gmsh -without-visit # Rocky 9 titania
99
linux rsync_ssh tache is241479.intra.cea.fr -all -TrioCFD -g -disable-valgrind -disable-plot2d -without-pdflatex -disable-vc # UB 22 salle de formation titania
1010
linux rsync_ssh tache is242981-clang.intra.cea.fr -TrioCFD -clang -force_provided_openmpi -without-pdflatex -without-visit # Fedora 32 Bat 451 LGLS titania bureau Pierre Ledac
1111
linux rsync_ssh cible is242981.intra.cea.fr -all -FLICA5 -semi_opt -coolprop -eos # Fedora 32 Bat 451 LGLS titania bureau Pierre Ledac
1212
linux rsync_ssh tache is234634-clang.intra.cea.fr -all -FLICA5 -clang -force_provided_openmpi -without-pdflatex -without-visit # Fedora 36 Bat 451 LGLS titania bureau TMA TRUST
1313
linux rsync_ssh tache is157083-clang.intra.cea.fr -all -TrioCFD -FLICA5 -clang -force_latest_mpich -without-pdflatex # Fedora 38 GF
14+
linux rsync_ssh tache is245205-clang.intra.cea.fr -all -TrioCFD -FLICA5 -clang -force_latest_mpich -without-pdflatex # Fedora 38 GF
1415
linux rsync_ssh tache is234637-clang.intra.cea.fr -all -TrioCFD -FLICA5 -clang -force_latest_mpich -without-pdflatex -without-visit -disable-plot2d -disable-gmsh # Fedora 40 GA
1516
linux rsync_ssh tache is234634.intra.cea.fr -all -FLICA5 -without-pdflatex # Fedora 36 Bat 451 LGLS bureau TMA TRUST
1617
linux rsync_ssh tache is157083-cpp14.intra.cea.fr -all -FLICA5 -TrioCFD -GENEPI3 -STT -PEMFC -C3D -SIDES -SCORPIO -TrioMC -stdcpp14 -without-pdflatex # Fedora 38 Bat 454 LMEC titania GF
18+
linux rsync_ssh tache is245205.intra.cea.fr -all -FLICA5 -TrioCFD -GENEPI3 -STT -PEMFC -C3D -SIDES -SCORPIO -TrioMC -without-pdflatex # Fedora 38 Bat 454 LMEC titania GF
1719
linux rsync_ssh cible is227246.intra.cea.fr -all -MPCube -TrioCFD -GENEPI3 -SIDES -SCORPIO -STT -PEMFC -FLICA5 -C3D -TrioMC -force_latest_mpich # Fedora 34 Bat 451 Erwan titania
1820
linux rsync_ssh tache irene-ccrt.ccc.cea.fr -limited -TrioCFD -semi_opt -benchmark -disable-gnuplot -without-doc -disable-plot2d -without-conda -disable-hwloc # RedHat 7.6 CEA CCRT
1921
linux rsync_ssh tache irene-ccrt-build64.ccc.cea.fr -limited -TrioCFD -build_64_bit -disable-gnuplot -without-doc -disable-plot2d -without-conda -disable-hwloc # RedHat 7.6 CEA CCRT
@@ -26,13 +28,13 @@ linux rsync_ssh tache jean-zay.idris.fr -limited -TrioCFD -
2628
linux rsync_ssh tache jean-zay-gpu.idris.fr -limited -TrioCFD -benchmark -build_64_bit -cuda -openmp -without-doc -disable-plot2d -without-visit -disable-hwloc # RedHat 8.1
2729
linux rsync_ssh tache jean-zay-build64.idris.fr -limited -TrioCFD -build_64_bit -without-doc -disable-plot2d -without-visit -disable-hwloc # RedHat 8.1
2830
linux ssh_pass tache adastra.cines.fr -limited -TrioCFD -build_64_bit -without-doc -disable-hwloc -disable-plot2d -disable-gmsh -without-visit
29-
linux ssh_pass tache adastra-gpu.cines.fr -limited -TrioCFD -benchmark -rocm -openmp -build_64_bit -without-doc -disable-hwloc -disable-plot2d -disable-gmsh -without-visit
30-
linux rsync_ssh tache orcus-amd.intra.cea.fr -limited -TrioCFD -STT -PEMFC -FLICA5 -disable-plot2d -disable-hwloc -without-conda -benchmark # CentOS 7.6 CEA Saclay
31+
linux ssh_pass tache adastra-gpu.cines.fr -limited -TrioCFD -benchmark -rocm -openmp -without-doc -disable-hwloc -disable-plot2d -disable-gmsh -without-visit
32+
linux rsync_ssh tache orcus-amd.intra.cea.fr -limited -TrioCFD -STT -PEMFC -FLICA5 -disable-plot2d -disable-hwloc -benchmark # CentOS 7.6 CEA Saclay
3133
linux rsync_ssh tache orcus-amd-build64.intra.cea.fr -limited -TrioCFD -build_64_bit -without-doc -disable-hwloc -disable-plot2d # CentOS 7.6 CEA Saclay
3234
linux rsync_ssh tache orcus-amd-gpu.intra.cea.fr -TrioCFD -cuda -openmp # Rocky 9 CEA Saclay
3335
linux rsync_ssh tache mezel.intra.cea.fr -limited -benchmark -without-doc -disable-plot2d -disable-hwloc # Redhat 8.5 CEA Cad
3436
linux rsync_ssh tache pegasi2.intra.cea.fr -TrioCFD -without-pdflatex # Redhat 9 serveur rackable pour validation TrioCFD titania
35-
linux ssh_pass cible rhodia8-4.intra.cea.fr -all -GENEPI3 -TrioCFD -FLICA5 -force_system_mpi -without-pdflatex # Redhat 8.4 serveur rackable titania
37+
linux ssh_pass cible rhodia8-4.intra.cea.fr -all -GENEPI3 -TrioCFD -FLICA5 -force_provided_openmpi -without-pdflatex # Redhat 8.4 serveur rackable titania
3638
linux rsync_ssh tache unitas20-coolprop-eos.intra.cea.fr -all -TrioCFD -FLICA5 -coolprop -eos # Ubuntu 20 pilote titania
3739
linux rsync_ssh tache is246145.intra.cea.fr -all -TrioCFD -GENEPI3 -FLICA5 -MPCube -platform -without-pdflatex -force_provided_mpich -without-visit -gcc8 # CentOS 7.9 G+ Bat 451 bureau TMA TRUST titania
3840
linux rsync_ssh tache is246145-wopetsc.intra.cea.fr -all -TrioCFD -GENEPI3 -C3D -TrioMC -disable-petsc -without-pdflatex -without-visit -gcc8 # CentOS 7.9 G+ Bat 451 bureau TMA TRUST titania
@@ -45,11 +47,11 @@ linux rsync_ssh non is247785.intra.cea.fr -all -C3D # Fedora 30
4547
linux rsync_ssh non is247255.intra.cea.fr -all -TrioCFD # UB 22 Bat 451 LMSF
4648
linux rsync_ssh non is241478.intra.cea.fr -all -TrioCFD -disable-petsc -without-pdflatex # UB 22 Bat 451 LGLS salle de formation titania
4749
linux rsync_ssh non is241478-xdata.intra.cea.fr -xdata -without-pdflatex # UB 22 Bat 451 LGLS salle de formation
48-
linux rsync_ssh cible is246436.intra.cea.fr -TrioCFD -g -without-pdflatex -disable-gmsh # RedHat 9.4 Bat 451 LMSF titania Michel
50+
linux rsync_ssh cible is246436.intra.cea.fr -TrioCFD -g -without-pdflatex -disable-gmsh -without-visit # RedHat 9.4 Bat 451 LMSF titania Michel
4951
linux rsync_ssh non is154726.intra.cea.fr -all -g -enable-petsc-debug -enable-mc-debug -without-pdflatex # UB 22 titania Bat 451 LGLS salle de formation
5052
linux rsync_ssh tache is240933.intra.cea.fr -check-valgrind -without-pdflatex # UB 22 Salle de formation titania
5153
linux rsync_ssh tache is241480-wompi-64.intra.cea.fr -all -disable-mpi -build_64_bit -disable-mpi4py -without-visit -without-pdflatex # UB 22 Bat 451 LMSF Salle de formation titania
52-
linux rsync_ssh tache is244274-build64.intra.cea.fr -build_64_bit -force-provided-mpich # Fedora 32 Bat 451 LGLS bureau Gilles
54+
linux rsync_ssh tache is244274-build64.intra.cea.fr -build_64_bit # Fedora 32 Bat 451 LGLS bureau Gilles
5355
linux rsync_ssh tache is234617-build64-wompi.intra.cea.fr -all -FLICA5 -build_64_bit -disable-mpi -disable-valgrind # Ubuntu 22 Bat 451 titania
5456
linux rsync_ssh cible is234617.intra.cea.fr -all -TrioCFD -GENEPI3 -C3D -MPCube -FLICA5 -TRUST_NK -SIDES -SCORPIO -TrioMC -Semi_opt_gcov # Ubuntu 22 Bat 451
5557
linux rsync_ssh tache is244274.intra.cea.fr -TRUST_NK -Check_decoupage -force-provided-mpich # Fedora 32 titania Bat 451 LGLS bureau Gilles
@@ -61,7 +63,7 @@ linux rsync_ssh non is232973-gui.intra.cea.fr -all -TrioCFD -GENEPI3
6163
linux rsync_ssh cible petra.intra.cea.fr -all -benchmark -CUDA_VISIBLE_DEVICES=0 -cuda=download -openmp -without-pdflatex -without-visit # Ubuntu 20.04 serveur rackable titania
6264
linux rsync_ssh tache is210376-tmpnoexe.intra.cea.fr -all # Fedora 34 titania tmp no exec
6365
linux rsync_ssh tache is210376-noconda.intra.cea.fr -all -C3D -without-conda # Fedora 34 tmp no exec, sans conda
64-
linux rsync_ssh tache unitas24-noconda.intra.cea.fr -all -without-conda # ubuntu 24 sans conda titania
66+
linux rsync_ssh tache unitas24.intra.cea.fr -all # ubuntu 24
6567
linux rsync_ssh tache is246513.intra.cea.fr -all -TrioCFD -prof -remote_install_TRUST_kernel_only # Ub22 mode formation titania
6668
linux ssh_pass tache is231762.intra.cea.fr -all -MPCube -TrioCFD -SIDES -SCORPIO -GENEPI3 -TRUST_NK -FLICA5 -STT -PEMFC -without-pdflatex # Rocky 9.2 GA
6769
linux rsync_ssh tache is234637.intra.cea.fr -all -MPCube -TrioCFD -SIDES -SCORPIO -GENEPI3 -TRUST_NK -FLICA5 -STT -PEMFC -C3D -TrioMC -disable-plot2d -disable-gmsh # Fedora 40 GA titania

0 commit comments

Comments
 (0)