Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
7af752a5
There was an error fetching the commit references. Please try again later.
Commit
7af752a5
authored
6 years ago
by
Matouš Fencl
Committed by
Tomáš Oberhuber
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
DeepCopy removed from CUDA
parent
204f7f1d
No related branches found
No related tags found
1 merge request
!43
Hamilton jacobi rebase
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/TNL/Experimental/Hamilton-Jacobi/Solvers/hamilton-jacobi/tnlFastSweepingMethod2D_impl.h
+18
-4
18 additions, 4 deletions
...bi/Solvers/hamilton-jacobi/tnlFastSweepingMethod2D_impl.h
with
18 additions
and
4 deletions
src/TNL/Experimental/Hamilton-Jacobi/Solvers/hamilton-jacobi/tnlFastSweepingMethod2D_impl.h
+
18
−
4
View file @
7af752a5
...
...
@@ -465,17 +465,31 @@ solve( const MeshPointer& mesh,
// Helping meshFunction that switches with AuxPtr in every calculation of CudaUpdateCellCaller<<<>>>()
MeshFunctionPointer
helpFunc
(
mesh
);
helpFunc
.
template
modifyData
()
=
auxPtr
.
template
getData
();
Devices
::
Cuda
::
synchronizeDevice
();
//MeshFunctionPointer helpFunc1( mesh );
// Setting number of threads and blocks in grid for DeepCopy of meshFunction
int
numBlocksXWithoutOverlaps
=
Devices
::
Cuda
::
getNumberOfBlocks
(
mesh
->
getDimensions
().
x
(),
cudaBlockSize
);
/*
int numBlocksXWithoutOverlaps = Devices::Cuda::getNumberOfBlocks( mesh->getDimensions().x(), cudaBlockSize );
int numBlocksYWithoutOverlaps = Devices::Cuda::getNumberOfBlocks( mesh->getDimensions().y(), cudaBlockSize );
dim3 gridSizeWithoutOverlaps( numBlocksXWithoutOverlaps, numBlocksYWithoutOverlaps );
Devices::Cuda::synchronizeDevice();
DeepCopy<<< gridSizeWithoutOverlaps, blockSize >>>( auxPtr.template getData< Device>(),
helpFunc.template modifyData< Device>(), 1, i );
cudaDeviceSynchronize();
TNL_CHECK_CUDA_DEVICE;
Devices::Cuda::synchronizeDevice();
DeepCopy<<< gridSizeWithoutOverlaps, blockSize >>>( auxPtr.template getData< Device>(),
helpFunc.template modifyData< Device>(), 0, i );
cudaDeviceSynchronize();
TNL_CHECK_CUDA_DEVICE;*/
#if ForDebug
/*int numBlocksXWithoutOverlaps = Devices::Cuda::getNumberOfBlocks( mesh->getDimensions().x(), cudaBlockSize );
int numBlocksYWithoutOverlaps = Devices::Cuda::getNumberOfBlocks( mesh->getDimensions().y(), cudaBlockSize );
dim3 gridSizeWithoutOverlaps( numBlocksXWithoutOverlaps, numBlocksYWithoutOverlaps );*/
DeepCopy
<<<
gridSizeWithoutOverlaps
,
blockSize
>>>
(
auxPtr
.
template
getData
<
Device
>(),
helpFunc
.
template
modifyData
<
Device
>(),
0
,
i
);
#endif
...
...
@@ -536,7 +550,7 @@ solve( const MeshPointer& mesh,
Devices
::
Cuda
::
synchronizeDevice
();
CudaUpdateCellCaller
<
18
><<<
gridSize
,
blockSize
>>>
(
ptr
,
interfaceMapPtr
.
template
getData
<
Device
>(),
auxPtr
.
template
modify
Data
<
Device
>(),
auxPtr
.
template
get
Data
<
Device
>(),
helpFunc
.
template
modifyData
<
Device
>(),
BlockIterDevice
,
vLower
,
vUpper
,
i
);
cudaDeviceSynchronize
();
...
...
@@ -701,7 +715,7 @@ __global__ void DeepCopy( const Functions::MeshFunction< Meshes::Grid< 2, Real,
const
Meshes
::
Grid
<
2
,
Real
,
Device
,
Index
>&
mesh
=
aux
.
template
getMesh
<
Devices
::
Cuda
>();
if
(
copy
){
if
(
i
<
mesh
.
getDimensions
().
x
()
&&
j
<
mesh
.
getDimensions
().
y
()
)
helpFunc
[
j
*
mesh
.
getDimensions
().
x
()
+
i
]
=
aux
[
j
*
mesh
.
getDimensions
().
x
()
+
i
];
helpFunc
[
j
*
mesh
.
getDimensions
().
x
()
+
i
]
=
1
;
//
aux[ j * mesh.getDimensions().x() + i ];
}
else
{
...
...
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