<workflowRun _class='org.jenkinsci.plugins.workflow.job.WorkflowRun'><action _class='hudson.model.CauseAction'><cause _class='hudson.triggers.SCMTrigger$SCMTriggerCause'><shortDescription>Started by an SCM change</shortDescription></cause></action><action></action><action _class='org.jenkinsci.plugins.workflow.libs.LibrariesAction'></action><action></action><action></action><action _class='hudson.plugins.git.util.BuildData'><buildsByBranchName><originmaster _class='hudson.plugins.git.util.Build'><buildNumber>76</buildNumber><marked><SHA1>d3946a586f66f155af6c32d7c6f9ed92389388cf</SHA1><branch><SHA1>d3946a586f66f155af6c32d7c6f9ed92389388cf</SHA1><name>origin/master</name></branch></marked><revision><SHA1>d3946a586f66f155af6c32d7c6f9ed92389388cf</SHA1><branch><SHA1>d3946a586f66f155af6c32d7c6f9ed92389388cf</SHA1><name>origin/master</name></branch></revision></originmaster><originchanges_to_not_break _class='hudson.plugins.git.util.Build'><buildNumber>72</buildNumber><marked><SHA1>c7eb33836dd22870dc48b2acd2b5b340dbeef909</SHA1><branch><SHA1>c7eb33836dd22870dc48b2acd2b5b340dbeef909</SHA1><name>origin/changes_to_not_break</name></branch></marked><revision><SHA1>c7eb33836dd22870dc48b2acd2b5b340dbeef909</SHA1><branch><SHA1>c7eb33836dd22870dc48b2acd2b5b340dbeef909</SHA1><name>origin/changes_to_not_break</name></branch></revision></originchanges_to_not_break><refsremotesoriginmaster _class='hudson.plugins.git.util.Build'><buildNumber>348</buildNumber><marked><SHA1>9687a1ee74c0ebddbb19c8399a4a4488cbfc0a50</SHA1><branch><SHA1>9687a1ee74c0ebddbb19c8399a4a4488cbfc0a50</SHA1><name>refs/remotes/origin/master</name></branch></marked><revision><SHA1>9687a1ee74c0ebddbb19c8399a4a4488cbfc0a50</SHA1><branch><SHA1>9687a1ee74c0ebddbb19c8399a4a4488cbfc0a50</SHA1><name>refs/remotes/origin/master</name></branch></revision></refsremotesoriginmaster></buildsByBranchName><lastBuiltRevision><SHA1>9687a1ee74c0ebddbb19c8399a4a4488cbfc0a50</SHA1><branch><SHA1>9687a1ee74c0ebddbb19c8399a4a4488cbfc0a50</SHA1><name>refs/remotes/origin/master</name></branch></lastBuiltRevision><remoteUrl>https://github.com/larson-group/wrf.git</remoteUrl><scmName></scmName></action><action></action><action _class='org.jenkinsci.plugins.workflow.cps.EnvActionImpl'></action><action></action><action></action><action></action><action _class='org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction'></action><action _class='org.jenkinsci.plugins.pipeline.modeldefinition.actions.RestartDeclarativePipelineAction'></action><action></action><action _class='org.jenkinsci.plugins.workflow.job.views.FlowGraphAction'></action><action></action><action></action><action></action><building>false</building><displayName>#348</displayName><duration>1942879</duration><estimatedDuration>1483010</estimatedDuration><fullDisplayName>wrf_clubb_silhs_parallel_ifort #348</fullDisplayName><id>348</id><keepLog>false</keepLog><number>348</number><queueId>1315</queueId><result>SUCCESS</result><timestamp>1714638066287</timestamp><url>http://carson.math.uwm.edu/jenkins/view/all/job/wrf_clubb_silhs_parallel_ifort/348/</url><changeSet _class='hudson.plugins.git.GitChangeSetList'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>advance_clubb_core_module.F90</affectedPath><commitId>d6ca5b0e6179de58c7571bea8650e3cd93c3de5e</commitId><timestamp>1714537919000</timestamp><author><absoluteUrl>http://carson.math.uwm.edu/jenkins/user/huebler</absoluteUrl><fullName>Gunther Huebler</fullName></author><authorEmail>huebler@uwm.edu</authorEmail><comment>Fixing bug. RESOLVED:556370c6406e6b943b88affbe7728a5036b1ba22, this was catchable by using debugging flags, but seems to otherwise cause no issues. Investigating I found that it only clips the below ground level, so that must not have been affecting other levels. This is technically BIT_CHANGING since it resolves an issue.
</comment><date>2024-04-30 23:31:59 -0500</date><id>d6ca5b0e6179de58c7571bea8650e3cd93c3de5e</id><msg>Fixing bug. RESOLVED:556370c6406e6b943b88affbe7728a5036b1ba22, this was catchable by using debugging flags, but seems to otherwise cause no issues. Investigating I found that it only clips the below ground level, so that must not have been affecting other levels. This is technically BIT_CHANGING since it resolves an issue.</msg><path><editType>edit</editType><file>advance_clubb_core_module.F90</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>fill_holes.F90</affectedPath><affectedPath>advance_wp2_wp3_module.F90</affectedPath><affectedPath>advance_xp2_xpyp_module.F90</affectedPath><affectedPath>advance_clubb_core_module.F90</affectedPath><affectedPath>clubb_api_module.F90</affectedPath><affectedPath>advance_xm_wpxp_module.F90</affectedPath><commitId>c2849fa3c750562ffdd5abd6bc9937c081e66226</commitId><timestamp>1714587276000</timestamp><author><absoluteUrl>http://carson.math.uwm.edu/jenkins/user/huebler</absoluteUrl><fullName>Gunther Huebler</fullName></author><authorEmail>huebler@uwm.edu</authorEmail><comment>Making num_draw_points in fill_holes a constant. We were already using this value as a constant everywhere, but passing a constant by argument list makes it difficult/impossible for a compiler to optimize using that constant, unless it does inlining. Now, rather than passing the constant num_hf_draw_points (or sometimes a hardcoded 2) we just use num_hf_draw_points directly from constants_clubb. This massively improves the performance of a loop in fill holes when using nvhpc+omp, which was the motivation for this, but should also improve the performance on CPUs. Everything is BFB.
</comment><date>2024-05-01 13:14:36 -0500</date><id>c2849fa3c750562ffdd5abd6bc9937c081e66226</id><msg>Making num_draw_points in fill_holes a constant. We were already using this value as a constant everywhere, but passing a constant by argument list makes it difficult/impossible for a compiler to optimize using that constant, unless it does inlining. Now, rather than passing the constant num_hf_draw_points (or sometimes a hardcoded 2) we just use num_hf_draw_points directly from constants_clubb. This massively improves the performance of a loop in fill holes when using nvhpc+omp, which was the motivation for this, but should also improve the performance on CPUs. Everything is BFB.</msg><path><editType>edit</editType><file>advance_clubb_core_module.F90</file></path><path><editType>edit</editType><file>clubb_api_module.F90</file></path><path><editType>edit</editType><file>fill_holes.F90</file></path><path><editType>edit</editType><file>advance_wp2_wp3_module.F90</file></path><path><editType>edit</editType><file>advance_xp2_xpyp_module.F90</file></path><path><editType>edit</editType><file>advance_xm_wpxp_module.F90</file></path></item><kind>git</kind></changeSet><culprit><absoluteUrl>http://carson.math.uwm.edu/jenkins/user/huebler</absoluteUrl><fullName>Gunther Huebler</fullName></culprit><inProgress>false</inProgress><nextBuild><number>349</number><url>http://carson.math.uwm.edu/jenkins/view/all/job/wrf_clubb_silhs_parallel_ifort/349/</url></nextBuild><previousBuild><number>347</number><url>http://carson.math.uwm.edu/jenkins/view/all/job/wrf_clubb_silhs_parallel_ifort/347/</url></previousBuild></workflowRun>