Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
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
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
code
pugs
Commits
7533708d
Commit
7533708d
authored
Jul 17, 2024
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Add tests for OStream checkpointing
parent
02dc3f42
No related branches found
No related tags found
1 merge request
!199
Integrate checkpointing
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/utils/checkpointing/ReadOStream.cpp
+2
-0
2 additions, 0 deletions
src/utils/checkpointing/ReadOStream.cpp
tests/CMakeLists.txt
+1
-0
1 addition, 0 deletions
tests/CMakeLists.txt
tests/test_checkpointing_OStream.cpp
+74
-0
74 additions, 0 deletions
tests/test_checkpointing_OStream.cpp
with
77 additions
and
0 deletions
src/utils/checkpointing/ReadOStream.cpp
+
2
−
0
View file @
7533708d
...
...
@@ -25,9 +25,11 @@ readOStream(const std::string& symbol_name, const HighFive::Group& symbol_table_
p_ostream
=
std
::
make_shared
<
OFStream
>
(
filename
,
true
);
break
;
}
// LCOV_EXCL_START
case
OStream
::
Type
::
std_ostream
:
{
throw
NotImplementedError
(
"std::ostream resume"
);
}
// LCOV_EXCL_STOP
}
return
{
std
::
make_shared
<
DataHandler
<
const
OStream
>>
(
p_ostream
)};
...
...
This diff is collapsed.
Click to expand it.
tests/CMakeLists.txt
+
1
−
0
View file @
7533708d
...
...
@@ -161,6 +161,7 @@ set(checkpointing_TESTS)
if
(
PUGS_HAS_HDF5
)
list
(
APPEND checkpointing_TESTS
test_checkpointing_HFTypes.cpp
test_checkpointing_OStream.cpp
test_checkpointing_IBoundaryDescriptor.cpp
test_checkpointing_IBoundaryConditionDescriptor.cpp
test_checkpointing_IQuadratureDescriptor.cpp
...
...
This diff is collapsed.
Click to expand it.
tests/test_checkpointing_OStream.cpp
0 → 100644
+
74
−
0
View file @
7533708d
#include
<catch2/catch_test_macros.hpp>
#include
<catch2/matchers/catch_matchers_all.hpp>
#include
<utils/Messenger.hpp>
#include
<language/utils/DataHandler.hpp>
#include
<language/utils/EmbeddedData.hpp>
#include
<language/utils/OFStream.hpp>
#include
<utils/checkpointing/ReadOStream.hpp>
#include
<utils/checkpointing/WriteOStream.hpp>
#include
<filesystem>
// clazy:excludeall=non-pod-global-static
TEST_CASE
(
"checkpointing_OStream"
,
"[utils/checkpointing]"
)
{
std
::
string
tmp_dirname
;
{
{
if
(
parallel
::
rank
()
==
0
)
{
tmp_dirname
=
[
&
]()
->
std
::
string
{
std
::
string
temp_filename
=
std
::
filesystem
::
temp_directory_path
()
/
"pugs_checkpointing_XXXXXX"
;
return
std
::
string
{
mkdtemp
(
&
temp_filename
[
0
])};
}();
}
parallel
::
broadcast
(
tmp_dirname
,
0
);
}
std
::
filesystem
::
path
path
=
tmp_dirname
;
const
std
::
string
filename
=
path
/
"checkpoint.h5"
;
HighFive
::
FileAccessProps
fapl
;
fapl
.
add
(
HighFive
::
MPIOFileAccess
{
MPI_COMM_WORLD
,
MPI_INFO_NULL
});
fapl
.
add
(
HighFive
::
MPIOCollectiveMetadata
{});
HighFive
::
File
file
=
HighFive
::
File
(
filename
,
HighFive
::
File
::
Truncate
,
fapl
);
SECTION
(
"OStream"
)
{
HighFive
::
Group
symbol_table_group
=
file
.
createGroup
(
"symbol_table"
);
HighFive
::
Group
useless_group
;
auto
p_ofstream
=
std
::
make_shared
<
OFStream
>
(
"output_name"
);
checkpointing
::
writeOStream
(
"ofstream"
,
EmbeddedData
{
std
::
make_shared
<
DataHandler
<
const
OStream
>>
(
p_ofstream
)},
file
,
useless_group
,
symbol_table_group
);
auto
p_ostream
=
std
::
make_shared
<
OStream
>
(
std
::
cout
);
REQUIRE_THROWS_WITH
(
checkpointing
::
writeOStream
(
"ostream"
,
EmbeddedData
{
std
::
make_shared
<
DataHandler
<
const
OStream
>>
(
p_ostream
)},
file
,
useless_group
,
symbol_table_group
),
"not implemented yet: std::ostream checkpoint"
);
file
.
flush
();
EmbeddedData
read_ofstream
=
checkpointing
::
readOStream
(
"ofstream"
,
symbol_table_group
);
auto
get_value
=
[](
const
EmbeddedData
&
embedded_data
)
->
const
OStream
&
{
return
*
dynamic_cast
<
const
DataHandler
<
const
OStream
>&>
(
embedded_data
.
get
()).
data_ptr
();
};
REQUIRE_NOTHROW
(
get_value
(
read_ofstream
));
REQUIRE_NOTHROW
(
dynamic_cast
<
const
OFStream
&>
(
get_value
(
read_ofstream
)));
REQUIRE
(
get_value
(
read_ofstream
).
type
()
==
OStream
::
Type
::
std_ofstream
);
REQUIRE
(
dynamic_cast
<
const
OFStream
&>
(
get_value
(
read_ofstream
)).
filename
()
==
"output_name"
);
}
}
parallel
::
barrier
();
if
(
parallel
::
rank
()
==
0
)
{
std
::
filesystem
::
remove_all
(
std
::
filesystem
::
path
{
tmp_dirname
});
}
}
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