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

InflowWind Flow Field fails to calculate AvgVel for large wind files when using Intel Compiler #1759

Merged
merged 7 commits into from
Sep 7, 2023

Commits on Aug 29, 2023

  1. Specify Python_ROOT_DIR in GH Actions

    This commit specifies Python_ROOT_DIR for each github action
    since each Job may have a different version of Python and a
    different path to the executable. By specifying Python_ROOT_DIR
    each Job should get a valid path.
    deslaughter committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    afbb446 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4d5708f View commit details
    Browse the repository at this point in the history
  3. Attempt using OpenBLAS in GH Actions

    See if 5MW_OC4Semi_Linear will run faster when built using OpenBLAS
    deslaughter committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    695d0dc View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. Use Python 3.11 in Github Actions

    Trying to resolve issue with regression test failure when it
    was previously passing
    deslaughter committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    6c8f265 View commit details
    Browse the repository at this point in the history
  2. Reduce parallel linearization rtest in GH actions

    This reduces the number of parallel linearization regression tests in
    GH actions in an attempt to keep the actions from failing
    deslaughter committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    d32993e View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. Avoid array alloc in IfW_FlowField

    When using the Intel compiler, summing along a dimension of an array
    creates a temporary copy which can be very large for 3D grid flow
    fields. The Intel compiler tries to allocate this temporary array on the
    stack, but it's too large and fails.
    deslaughter committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    2708852 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8e7e0b9 View commit details
    Browse the repository at this point in the history