Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ScalFMM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
solverstack
ScalFMM
Commits
c76e1738
Commit
c76e1738
authored
Apr 25, 2018
by
COULAUD Olivier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deplace file
parent
fbc50cd8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
91 deletions
+0
-91
Utils/src/compare2Files.cpp
Utils/src/compare2Files.cpp
+0
-91
No files found.
Utils/src/compare2Files.cpp
deleted
100644 → 0
View file @
fbc50cd8
/*
* genarateDistributions.cpp
*
* Created on: 23 mars 2014
* Author: Olivier Coulaud
*/
// Keep in private GIT
//
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
//
#include "Utils/FGlobal.hpp"
#include "Utils/FPoint.hpp"
#include "Files/FFmaGenericLoader.hpp"
#include "Utils/FParameters.hpp"
#include "Utils/FCompareResults.hpp"
#include "Utils/FParameterNames.hpp"
//
/// \file compare2files.cpp
//!
//! \brief compare2files: Gives the error between
//!
//! Driver to transform a FMA format and/or to build a visualization file<br>
//! For a description of the FMA format see FFmaGenericLoader<br>
//! <b> General arguments:</b>
//! \param -help (-h) to see the parameters available in this driver
//! \param -fmmfile1 name1: first file name to compare (with extension .fma (ascii) or bfma (binary)
//! \param -fmmfile2 name2: second file name to compare (with extension .fma (ascii) or bfma (binary)
//! \param -ewaldfile2 name2 if name2 contains the result done by the ewald method for 1/r kernel.
//!
//! Error code (return of the main)
//! -1 Number of points is different in the two files.
//!
//! \b examples
//!
//!
//! compare2files -file1 unitCubeXYZQ100.fma -file2 unitCubeXYZQ100
int
main
(
int
argc
,
char
**
argv
){
// const FParameterNames LocalParameterEwald{
// {"-ewaldfile2"},
// "-ewaldfile2 name2 if name2 contains the result done by the ewald method for 1/r kernel"
// };
FHelpDescribeAndExit
(
argc
,
argv
,
"Driver to change the format of the input file."
,
FParameterDefinitions
::
InputFileOne
,
FParameterDefinitions
::
InputFileTwow
,
/*LocalParameterEwald*/
);
const
std
::
string
filename1
(
FParameters
::
getStr
(
argc
,
argv
,
FParameterDefinitions
::
InputFileOne
.
options
,
"data.fma"
));
const
std
::
string
filename2
(
FParameters
::
getStr
(
argc
,
argv
,
FParameterDefinitions
::
InputFileTwow
.
options
,
"data.fma"
));
typedef
double
FReal
;
FFmaGenericLoader
<
FReal
>
loader1
(
filename1
);
FFmaGenericLoader
<
FReal
>
loader2
(
filename2
);
//
// Allocation
//
FSize
nbParticles
=
loader1
.
getNumberOfParticles
();
const
unsigned
int
nbData
=
loader1
.
getNbRecordPerline
()
;
if
(
nbParticles
!=
loader2
.
getNumberOfParticles
()){
std
::
cerr
<<
"Number of points is different in the two files."
<<
std
::
endl
;
return
-
1
;
}
if
(
(
nbData
!=
8
)
&&
(
loader2
.
getNbRecordPerline
())
){
std
::
cerr
<<
"Wrong files only "
<<
std
::
min
(
loader2
.
getNbRecordPerline
(),
nbData
)
<<
" to read."
<<
std
::
endl
;
return
-
2
;
}
FmaRWParticle
<
FReal
,
8
,
8
>*
const
particles1
=
new
FmaRWParticle
<
FReal
,
8
,
8
>
[
nbParticles
];
FmaRWParticle
<
FReal
,
8
,
8
>*
const
particles2
=
new
FmaRWParticle
<
FReal
,
8
,
8
>
[
nbParticles
];
//
loader1
.
fillParticle
(
particles1
,
nbParticles
);
loader2
.
fillParticle
(
particles2
,
nbParticles
);
const
FSize
error
=
compareTwoArrays
<
FReal
,
FmaRWParticle
<
FReal
,
8
,
8
>*
>
(
"TAG"
,
nbParticles
,
particles1
,
particles2
);
//
delete
[]
particles1
;
delete
[]
particles2
;
//
return
int
(
error
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment