Sergi Siso

Results 110 issues of Sergi Siso

Nemo's `tools/DOMAINcfg/src/getincom.f90` has the following statement: `l_cmp = (MINVAL(i_val) == MAXVAL(i_val)) .AND. (size_of_in > compress_lim)` Applying the Maxval2LoopTrans results with invalid code: ``` l_cmp = -HUGE(l_cmp) do idx = LBOUND(i_val,...

bug

Currently the loop variable in a Loop is directly in a symbol attribute, not in a Children of type Reference. This makes some intrastructure meant for Refernces stligly odd, for...

enhancement

Now that kinds, shapes and init values are represented as PSyIR expressions, we need to make sure these are consistent with the scope they are in, so for instance I...

Currently some external files (to locate important external declarations) happen on the fly, this is problematic not only because searching for files is expensive but also because doing so when...

Two ideas: 1. Can we use the colour tiling infrastructure to loops that need tiling but not colouring? Colour tiling: Loop over colours Loop over blocks in colour (parallel) Loop...

Now that NG-Arch has added support for transmuting lric_atm compontents from UM, Jules, UKCA, ... we should test this functionality.

Unlike `is_pure` where None (unknown) and False (not pure) are usually the same. ``` if self.is_pure: # Do something: else: # Do something else ``` For `is_elemental` this is not...

With pytest with python 3.14 I get the following warning: ``` fparser/two/pattern_tools.py:70: SyntaxWarning: "\:" is an invalid escape sequence. Such sequences will not work in the future. Did you mean...

Other nodes can be created using a string (in addition to using a reader), which is convinient when creating a single node without needed the full Fortran program, but Directive...