Skip to content

Commit

Permalink
Merge pull request #83 from Goddard-Fortran-Ecosystem/feature/mathomp…
Browse files Browse the repository at this point in the history
…4/update-submodule

Update gFTL to v1.15.0
  • Loading branch information
tclune authored Feb 2, 2025
2 parents b30a15e + a1a4131 commit 25fd625
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.12)
# the library gftl-shared retain the hyphen (and lower case)

project (GFTL_SHARED
VERSION 1.9.0
VERSION 1.10.0
LANGUAGES Fortran)


Expand Down
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.10.0] - 2025-01-31

### Added

- LLVMFlang compiler support

### Changed

- Updated gFTL to v1.15.0
- Update CI to have `gfortran-10` and `gfortran-11` only on `ubuntu-22.04`
- Update CI NVIDIA to NVHPC 24.7
- Add Flang to CI
Expand Down
2 changes: 1 addition & 1 deletion extern/gFTL
Submodule gFTL updated 77 files
+69 −13 .github/workflows/main.yml
+1 −1 CMakeLists.txt
+29 −0 ChangeLog.MD
+7 −0 cmake/LLVMFlang.cmake
+0 −0 examples/v1/CMakeLists.txt
+0 −0 examples/v1/Map/CMakeLists.txt
+0 −0 examples/v1/Map/CaseInsensitiveKey.F90
+0 −0 examples/v1/Map/Mapsmap.F90
+0 −0 examples/v1/Map/StringArray.F90
+0 −0 examples/v1/Map/StringPoly.F90
+0 −0 examples/v1/Tracer/AbstractValue.F90
+0 −0 examples/v1/Tracer/AttributeMap.F90
+0 −0 examples/v1/Tracer/CMakeLists.txt
+0 −0 examples/v1/Tracer/Problem.txt
+0 −0 examples/v1/Tracer/TestAttributeMap.F90
+0 −0 examples/v1/Tracer/TestTracer.F90
+0 −0 examples/v1/Tracer/TestTracerBundle.F90
+0 −0 examples/v1/Tracer/TestValueType.F90
+0 −0 examples/v1/Tracer/TestValues.F90
+0 −0 examples/v1/Tracer/Tracer.F90
+0 −0 examples/v1/Tracer/TracerBundle.F90
+0 −0 examples/v1/Tracer/Values.F90
+0 −0 examples/v1/Vector/CMakeLists.txt
+0 −0 examples/v1/Vector/VecIntAndReal.F90
+0 −0 examples/v1/Vector/VecMyPolyPtr.F90
+0 −0 examples/v1/Vector/VecMyType.F90
+13 −0 examples/v2/Vector/CMakeLists.txt
+14 −0 examples/v2/Vector/README.md
+120 −0 examples/v2/Vector/VecIntAndReal.F90
+96 −0 examples/v2/Vector/VecMyPolyPtr.F90
+88 −0 examples/v2/Vector/VecMyType.F90
+1 −1 include/v2/CMakeLists.txt
+2 −0 include/v2/algorithms/find/procedures.inc
+3 −2 include/v2/algorithms/procedures.inc
+8 −0 include/v2/alt_set/header.inc
+206 −0 include/v2/alt_set/iterator_procedures.inc
+60 −0 include/v2/alt_set/iterator_specification.inc
+1,233 −0 include/v2/alt_set/procedures.inc
+22 −0 include/v2/alt_set/public.inc
+187 −0 include/v2/alt_set/specification.inc
+14 −0 include/v2/alt_set/tail.inc
+10 −0 include/v2/alt_set/template.inc
+6 −6 include/v2/map/map.md
+35 −14 include/v2/map/procedures.inc
+31 −9 include/v2/map/specification.inc
+6 −0 include/v2/parameters/CMakeLists.txt
+2 −1 include/v2/set/procedures.inc
+1 −1 include/v2/vector/iterator_specification.inc
+4 −1 include/v2/vector/procedures.inc
+1 −1 include/v2/vector/reverse_iterator_specification.inc
+7 −2 include/v2/vector/specification.inc
+10 −9 include/v2/vector/vector.md
+1 −0 tests/CMakeLists.txt
+32 −0 tests/alt_set/CMakeLists.txt
+251 −0 tests/alt_set/Test_alt_set.m4
+153 −0 tests/alt_set/Test_alt_set_Algorithms.m4
+11 −0 tests/alt_set/alt_set.m4
+10 −8 tests/deque/Test_Deque.m4
+9 −8 tests/deque/Test_DequeIterator.m4
+9 −8 tests/deque/Test_DequeRIterator.m4
+15 −2 tests/map/CMakeLists.txt
+28 −8 tests/map/Test_Map.m4
+365 −0 tests/map/Test_alt_Map.m4
+149 −0 tests/map/Test_alt_MapAlgorithms.m4
+12 −0 tests/map/alt_Map.m4
+10 −8 tests/ordered_map/Test_OrderedMap.m4
+9 −8 tests/queue/Test_Queue.m4
+8 −8 tests/set/Test_Set.m4
+8 −8 tests/set/Test_SetAlgorithms.m4
+3 −0 tests/shared/include/real_kindlen64.inc
+4 −0 tests/shared/include/test_real_kindlen64.inc
+8 −8 tests/stack/Test_Stack.m4
+1 −0 tests/vector/CMakeLists.txt
+12 −12 tests/vector/Test_Vector.m4
+9 −9 tests/vector/Test_VectorAlgorithms.m4
+10 −10 tests/vector/Test_VectorIterator.m4
+9 −9 tests/vector/Test_VectorRIterator.m4

0 comments on commit 25fd625

Please sign in to comment.