-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EXPLORE: Split iniseq into separate file; fixes strange oneapi behavior
- Loading branch information
1 parent
56e72e2
commit 7cf5aa8
Showing
2 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
C Copyright(C) 2024 National Technology & Engineering Solutions | ||
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with | ||
C NTESS, the U.S. Government retains certain rights in this software. | ||
C | ||
C See packages/seacas/LICENSE for details | ||
|
||
subroutine iniseq(icnt, map) | ||
integer map(*) | ||
do i=1, icnt | ||
map(i) = i | ||
end do | ||
return | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters