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

Fix the errors raised by the Intel compiler #249

Open
boulderdaze opened this issue Feb 6, 2025 · 0 comments
Open

Fix the errors raised by the Intel compiler #249

boulderdaze opened this issue Feb 6, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@boulderdaze
Copy link
Collaborator

The Intel compiler raises an error when attempting to deallocate operation on grid_t, radiator_t, and profile_t operations.

    f_grid => grid_warehouse%get_grid(f_grid_name, f_grid_units)

    select type(f_grid) 
    type is(grid_from_host_t)
      error_code = 0
      grid_ptr = c_loc(f_grid)
    class default
      error_code = 1
      deallocate(f_grid)     <-- raises an error
      grid_ptr = c_null_ptr
    end select
@boulderdaze boulderdaze added the bug Something isn't working label Feb 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant