-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
8,095 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# compiled object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# compiled dynamic libraries | ||
*.so | ||
|
||
# fortran module files | ||
*.mod | ||
|
||
# compiled static libraries | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# executables | ||
*.exe | ||
*.out | ||
*.a | ||
*.app | ||
|
||
# log files | ||
*.log | ||
|
||
# special directories | ||
src/pre-lib/ | ||
OLD/ | ||
static/ | ||
shared/ | ||
doc/html/ | ||
wiki/ | ||
forks/ | ||
references/ | ||
exe/ | ||
|
||
# special files | ||
get_automatic_changelog.sh | ||
mpi_speedup.dat | ||
mpi_speedup.lay | ||
openmp_speedup.dat | ||
openmp_speedup.lay | ||
.doxygenconfig.bak | ||
diagnostic_messages | ||
error_messages | ||
run_diff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
[submodule "src/third_party/PENF"] | ||
path = src/third_party/PENF | ||
url = https://github.com/szaghi/PENF | ||
branch = master | ||
[submodule "src/third_party/BeFoR64"] | ||
path = src/third_party/BeFoR64 | ||
url = https://github.com/szaghi/BeFoR64 | ||
branch = master | ||
[submodule "src/third_party/StringiFor"] | ||
path = src/third_party/StringiFor | ||
url = https://github.com/szaghi/StringiFor | ||
branch = master | ||
[submodule "src/third_party/FoXy"] | ||
path = src/third_party/FoXy | ||
url = https://github.com/Fortran-FOSS-Programmers/FoXy | ||
branch = master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
coverage: | ||
ignore: | ||
- src/lib/befor64* | ||
- src/lib/foxy* | ||
- src/lib/penf.F90 | ||
- src/lib/stringifor* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
|
||
all_passed () { | ||
local array="$1[@]" | ||
local ok=1 | ||
for element in "${!array}"; do | ||
if [ "$element" == 'F' ]; then | ||
ok=0 | ||
break | ||
fi | ||
done | ||
echo $ok | ||
} | ||
|
||
echo "Run all tests" | ||
declare -a tests_executed | ||
for e in $( find ./exe/ -type f -executable -print ); do | ||
is_passed=`$e | grep -i "Are all tests passed? " | awk '{print $5}'` | ||
tests_executed=("${tests_executed[@]}" "$is_passed") | ||
echo " run test $e, is passed? $is_passed" | ||
if [ "$is_passed" == 'F' ]; then | ||
echo | ||
echo "Test failed" | ||
./exe/$e | ||
fi | ||
done | ||
passed=$(all_passed tests_executed) | ||
echo "Number of tests executed ${#tests_executed[@]}" | ||
if [ $passed -eq 1 ]; then | ||
echo "All tests passed" | ||
exit 0 | ||
else | ||
echo "Some tests failed" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../third_party/BeFoR64/src/lib/befor64.F90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../third_party/BeFoR64/src/lib/befor64_pack_data_m.F90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../third_party/FoXy/src/lib/foxy.f90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../third_party/FoXy/src/lib/foxy_xml_file.f90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../third_party/FoXy/src/lib/foxy_xml_tag.f90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../third_party/PENF/src/lib/penf.F90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../third_party/StringiFor/src/lib/stringifor.F90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../third_party/StringiFor/src/lib/stringifor_string_t.F90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
!< VTK_Fortran, pure Fortran (2003+) library to parse and emitt VTK files. | ||
module vtk_fortran | ||
!----------------------------------------------------------------------------------------------------------------------------------- | ||
!< VTK_Fortran, pure Fortran (2003+) library to parse and emitt VTK files. | ||
!----------------------------------------------------------------------------------------------------------------------------------- | ||
use vtk_fortran_pvtk_file, only : pvtk_file | ||
use vtk_fortran_vtk_file, only : vtk_file | ||
use vtk_fortran_vtm_file, only : vtm_file | ||
!----------------------------------------------------------------------------------------------------------------------------------- | ||
|
||
!----------------------------------------------------------------------------------------------------------------------------------- | ||
implicit none | ||
private | ||
public :: pvtk_file | ||
public :: vtk_file | ||
public :: vtm_file | ||
!----------------------------------------------------------------------------------------------------------------------------------- | ||
endmodule vtk_fortran |
Oops, something went wrong.