Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HPC_Imaging
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Claudio Gheller
HPC_Imaging
Commits
8ca5ba5b
Commit
8ca5ba5b
authored
2 years ago
by
Claudio Gheller
Browse files
Options
Downloads
Patches
Plain Diff
filename size parametrized
parent
9309a598
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
w-stacking-fftw.c
+22
-23
22 additions, 23 deletions
w-stacking-fftw.c
with
22 additions
and
23 deletions
w-stacking-fftw.c
+
22
−
23
View file @
8ca5ba5b
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#define MAX(X, Y) (((X) > (Y)) ? (X) : (Y))
#define MAX(X, Y) (((X) > (Y)) ? (X) : (Y))
#define NOVERBOSE
#define NOVERBOSE
#define NFILES 100
#define NFILES 100
#define FILENAMELENGTH 30
// Linked List set-up
// Linked List set-up
struct
sectorlist
{
struct
sectorlist
{
...
@@ -54,28 +55,26 @@ int main(int argc, char * argv[])
...
@@ -54,28 +55,26 @@ int main(int argc, char * argv[])
// MS paths
// MS paths
char
datapath
[
900
];
char
datapath
[
900
];
char
datapath_multi
[
NFILES
][
900
];
char
datapath_multi
[
NFILES
][
900
];
char
ufile
[
FILENAMELENGTH
]
=
"ucoord.bin"
;
// Bin MS files
char
vfile
[
FILENAMELENGTH
]
=
"vcoord.bin"
;
char
ufile
[
30
]
=
"ucoord.bin"
;
char
wfile
[
FILENAMELENGTH
]
=
"wcoord.bin"
;
char
vfile
[
30
]
=
"vcoord.bin"
;
char
weightsfile
[
FILENAMELENGTH
]
=
"weights.bin"
;
char
wfile
[
30
]
=
"wcoord.bin"
;
char
visrealfile
[
FILENAMELENGTH
]
=
"visibilities_real.bin"
;
char
weightsfile
[
30
]
=
"weights.bin"
;
char
visimgfile
[
FILENAMELENGTH
]
=
"visibilities_img.bin"
;
char
visrealfile
[
30
]
=
"visibilities_real.bin"
;
char
metafile
[
FILENAMELENGTH
]
=
"meta.txt"
;
char
visimgfile
[
30
]
=
"visibilities_img.bin"
;
char
metafile
[
30
]
=
"meta.txt"
;
// Mesh related files
// Mesh related files
char
outfile
[
30
]
=
"grid.txt"
;
char
outfile
[
FILENAMELENGTH
]
=
"grid.txt"
;
char
outfile1
[
30
]
=
"coords.txt"
;
char
outfile1
[
FILENAMELENGTH
]
=
"coords.txt"
;
char
outfile2
[
30
]
=
"grid_real.bin"
;
char
outfile2
[
FILENAMELENGTH
]
=
"grid_real.bin"
;
char
outfile3
[
30
]
=
"grid_img.bin"
;
char
outfile3
[
FILENAMELENGTH
]
=
"grid_img.bin"
;
char
fftfile
[
30
]
=
"fft.txt"
;
char
fftfile
[
FILENAMELENGTH
]
=
"fft.txt"
;
char
fftfile2
[
30
]
=
"fft_real.bin"
;
char
fftfile2
[
FILENAMELENGTH
]
=
"fft_real.bin"
;
char
fftfile3
[
30
]
=
"fft_img.bin"
;
char
fftfile3
[
FILENAMELENGTH
]
=
"fft_img.bin"
;
char
logfile
[
30
]
=
"run.log"
;
char
logfile
[
FILENAMELENGTH
]
=
"run.log"
;
char
extension
[
30
]
=
".txt"
;
char
extension
[
FILENAMELENGTH
]
=
".txt"
;
char
srank
[
4
];
char
srank
[
4
];
char
timingfile
[
30
]
=
"timings.dat"
;
char
timingfile
[
FILENAMELENGTH
]
=
"timings.dat"
;
// Visibilities related variables
// Visibilities related variables
double
*
uu
;
double
*
uu
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment