Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KiT-RT
KiT-RT
Commits
3ac62e93
Commit
3ac62e93
authored
Apr 11, 2020
by
Jannick Wolters
Browse files
removed gsl lib dependency
parent
999b51a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
code/CMakeLists.txt
View file @
3ac62e93
...
...
@@ -25,9 +25,6 @@ include_directories( ${MPI_INCLUDE_PATH} )
find_package
(
LAPACK REQUIRED
)
include_directories
(
${
LAPACK_INCLUDE_DIR
}
)
find_package
(
GSL REQUIRED
)
include_directories
(
${
GSL_INCLUDE_DIR
}
)
add_compile_definitions
(
BLAZE_USE_SHARED_MEMORY_PARALLELIZATION=0
)
add_compile_definitions
(
BLAZE_BLAS_MODE=1
)
message
(
"Automatic Cache Size Configuration"
)
...
...
code/src/mesh.cpp
View file @
3ac62e93
...
...
@@ -32,7 +32,7 @@ void Mesh::ComputeConnectivity() {
sortedBoundaries
.
push_back
(
_boundaries
[
i
].
second
);
std
::
sort
(
sortedBoundaries
[
i
].
begin
(),
sortedBoundaries
[
i
].
end
()
);
}
#pragma omp parallel for
for
(
unsigned
i
=
mpiCellStart
;
i
<
mpiCellEnd
;
++
i
)
{
std
::
vector
<
unsigned
>*
cellsI
=
&
sortedCells
[
i
];
for
(
unsigned
j
=
0
;
j
<
_numCells
;
++
j
)
{
...
...
Write
Preview
Supports
Markdown
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