8000 Included nvfortran in CI and fixed the missing allocation for Tgc by gha3mi · Pull Request #12 · gha3mi/forcad · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Included nvfortran in CI and fixed the missing allocation for Tgc #12

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

Merged
merged 3 commits into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
10000 Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/fpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
toolchain: {compiler: nvidia-hpc}

- os: macos-latest
- toolchain: {compiler: nvidia-hpc}

steps:
- name: Checkout code
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
- Implemented memory cleanup in the examples and tests.
- Added cleanup for colormap type in the ppm examples.
- Added screenshots to the README file.
- Included nvidia compiler in the CI.
- Added missing allocation for `Tgc` in the `compute_Xg_nurbs_1d` subroutine.

### Changed

Expand All @@ -29,5 +31,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

### Removed

- Excluded macOS from CI due to a problem with fpm.
- Excluded NVIDIA from CI due to a problem with ForColormap or a bug with the NVIDIA compiler.
- Excluded macOS from CI due to a problem with fpm.
1 change: 1 addition & 0 deletions src/forcad_nurbs_curve.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1504,6 +1504,7 @@ impure function compute_Xg_nurbs_1d(Xt, knot, degree, nc, ng, Xc, Wc) result(Xg)
integer :: i

allocate(Xg(ng, size(Xc,2)))
allocate(Tgc(nc))
!$OMP PARALLEL DO PRIVATE(Tgc)
do i = 1, ng
Tgc = basis_bspline(Xt(i), knot, nc, degree)
Expand Down
Loading
0