Skip to content

Commit

Permalink
EXPLORE: Split iniseq into separate file; fixes strange oneapi behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar authored and gsjaardema committed Feb 20, 2024
1 parent 56e72e2 commit 7cf5aa8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
13 changes: 13 additions & 0 deletions packages/seacas/applications/explore/exp_iniseq.f
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
8 changes: 0 additions & 8 deletions packages/seacas/applications/explore/explore.f
Original file line number Diff line number Diff line change
Expand Up @@ -442,11 +442,3 @@ PROGRAM EXPLORE
CALL WRAPUP (QAINFO(1))

END

subroutine iniseq(icnt, map)
integer map(*)
do i=1, icnt
map(i) = i
end do
return
end

0 comments on commit 7cf5aa8

Please sign in to comment.