Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2394 support char logical in psydata #2509

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8b8d9b6
#2394 Support logical and character for nan and readonly.
hiker Nov 9, 2023
1c54119
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker Feb 22, 2024
b61f169
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker May 14, 2024
76f2a28
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker Dec 8, 2024
92388d6
#2394 Fixed character handling.
hiker Dec 9, 2024
a2f86f7
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker Dec 10, 2024
1d13b02
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker Dec 18, 2024
ecb0571
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker Jan 6, 2025
8debe33
#2394 Removed the bits field from ALL_TYPES.
hiker Jan 7, 2025
69b9938
#2394 Fixed bug (int arrays not checked for value range).
hiker Jan 7, 2025
ae62916
#2394 Added generic read-only verification library, and added example…
hiker Jan 9, 2025
42259f5
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker Jan 9, 2025
b3f9904
#2394 Fixed coding style.
hiker Jan 9, 2025
fa19a9b
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker Jan 9, 2025
96d917d
#2394 fix whitespace errors in xdsl makefile
arporter Jan 10, 2025
9533be1
#2394 Fix typo.
hiker Jan 14, 2025
3358e77
#2394 Updated documentation and comments.
hiker Jan 14, 2025
e970ccf
#2394 Fix makefile to avoid running psyclone unnecessary.
hiker Jan 14, 2025
2f1497a
#2394 Added more comments.
hiker Jan 14, 2025
b0003bf
#2394 Updated comments, fixed link.
hiker Jan 14, 2025
761099c
#2394 Fixed incorrect links in READMEs.
hiker Jan 14, 2025
3c80cb8
Merge branch '2394_support_char_logical_in_psydata' of github.com:stf…
hiker Jan 14, 2025
d0562cf
Merge remote-tracking branch 'origin/master' into 2394_support_char_l…
hiker Jan 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#2394 Updated documentation and comments.
  • Loading branch information
hiker committed Jan 14, 2025
commit 3358e77622b02e1e19af45715c2f0a63860ad044
6 changes: 6 additions & 0 deletions examples/nemo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,9 @@ benchmark.

Extraction of kernel data. Using the tra_adv benchmark, this example
shows the extraction of kernel input- and output-data.

## Example 6

A simple stand-alone example that shows verification that read-only data
is not modified, e.g. by out-of-bounds accesses to other variables.
This uses the PSyData interface to instrument generic Fortran code.
7 changes: 3 additions & 4 deletions examples/nemo/eg6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,9 @@
# Author: A. R. Porter, STFC Daresbury Lab
# Modified J. Henrichs, Bureau of Meteorology

# Makefile for the 5th NEMO example. Uses PSyclone (which must
# be installed) to generate Fortran for the tracer-advection benchmark.
# The script provided here instruments code to check that read-only
# variables are not modified.
# This example uses PSyclone (which must be installed) to generate Fortran for
# the tracer-advection benchmark. The script provided here instruments code to
# check that read-only variables are not modified.

# The compiler to use may be specified via the F90 environment variable,
# it defaults to:
Expand Down