Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
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
iRMB
VirtualFluids
Commits
c8f1b657
Commit
c8f1b657
authored
5 years ago
by
LEGOLAS\lenz
Browse files
Options
Downloads
Patches
Plain Diff
modifies logfile location in TGV Multi GPU target
parent
1f82ae55
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
targets/apps/LBM/TGV_3D_MultiGPU/TGV_3D_MultiGPU.cpp
+29
-26
29 additions, 26 deletions
targets/apps/LBM/TGV_3D_MultiGPU/TGV_3D_MultiGPU.cpp
with
29 additions
and
26 deletions
targets/apps/LBM/TGV_3D_MultiGPU/TGV_3D_MultiGPU.cpp
+
29
−
26
View file @
c8f1b657
...
@@ -101,6 +101,7 @@ int mpiWorldSize;
...
@@ -101,6 +101,7 @@ int mpiWorldSize;
std
::
string
kernel
(
"CumulantK17Comp"
);
std
::
string
kernel
(
"CumulantK17Comp"
);
std
::
string
path
(
"F:/Work/Computations/out/TaylorGreen3DNew/"
);
//LEGOLAS
std
::
string
path
(
"F:/Work/Computations/out/TaylorGreen3DNew/"
);
//LEGOLAS
std
::
string
path
(
"results/"
);
//PHOENIX
//std::string path("E:/DrivenCavity/results/"); //TESLA03
//std::string path("E:/DrivenCavity/results/"); //TESLA03
std
::
string
simulationName
(
"TGV_3D"
);
std
::
string
simulationName
(
"TGV_3D"
);
...
@@ -243,32 +244,6 @@ void multipleLevel(const std::string& configPath)
...
@@ -243,32 +244,6 @@ void multipleLevel(const std::string& configPath)
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
{
std
::
stringstream
_path
;
_path
<<
path
;
_path
<<
kernel
;
_path
<<
"MultiGPU"
;
if
(
useLimiter
)
_path
<<
"_Limiter"
;
path
=
_path
.
str
();
}
//////////////////////////////////////////////////////////////////////////
{
std
::
stringstream
_simulationName
;
_simulationName
<<
simulationName
;
_simulationName
<<
"_nx_"
<<
nx
;
_simulationName
<<
"_dtPerL_"
<<
dtPerL
<<
"_"
;
simulationName
=
_simulationName
.
str
();
}
//////////////////////////////////////////////////////////////////////////
std
::
vector
<
uint
>
devices
(
mpiWorldSize
);
std
::
vector
<
uint
>
devices
(
mpiWorldSize
);
std
::
iota
(
devices
.
begin
(),
devices
.
end
(),
0
);
std
::
iota
(
devices
.
begin
(),
devices
.
end
(),
0
);
...
@@ -395,6 +370,34 @@ int main( int argc, char* argv[])
...
@@ -395,6 +370,34 @@ int main( int argc, char* argv[])
if
(
cmdOptionExists
(
argv
,
argv
+
argc
,
"--useWale"
)
)
if
(
cmdOptionExists
(
argv
,
argv
+
argc
,
"--useWale"
)
)
useWale
=
true
;
useWale
=
true
;
//////////////////////////////////////////////////////////////////////////
{
std
::
stringstream
_path
;
_path
<<
path
;
_path
<<
kernel
;
_path
<<
"MultiGPU"
;
if
(
useLimiter
)
_path
<<
"_Limiter"
;
path
=
_path
.
str
();
}
//////////////////////////////////////////////////////////////////////////
{
std
::
stringstream
_simulationName
;
_simulationName
<<
simulationName
;
_simulationName
<<
"_nx_"
<<
nx
;
_simulationName
<<
"_dtPerL_"
<<
dtPerL
<<
"_"
;
simulationName
=
_simulationName
.
str
();
}
//////////////////////////////////////////////////////////////////////////
multipleLevel
(
targetPath
+
"config.txt"
);
multipleLevel
(
targetPath
+
"config.txt"
);
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
...
...
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