-
Notifications
You must be signed in to change notification settings - Fork 629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move checkpoint to IterationData. Remove ExecIterData. #5555
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,8 @@ namespace dali { | |
using operator_trace_map_t = std::unordered_map< | ||
std::string /* trace_name */, std::string /* trace_value */>; | ||
|
||
class Checkpoint; | ||
|
||
class OperatorTraces { | ||
public: | ||
/** Gets operator traces for a single operator. | ||
|
@@ -74,8 +76,11 @@ class OperatorTraces { | |
struct IterationData { | ||
int64_t iteration_index = 0; | ||
OperatorTraces operator_traces; | ||
std::shared_ptr<Checkpoint> checkpoint; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I used |
||
}; | ||
|
||
using SharedIterData = std::shared_ptr<IterationData>; | ||
|
||
} // namespace dali | ||
|
||
#endif // DALI_PIPELINE_WORKSPACE_ITERATION_DATA_H_ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it a problem that
checkpoint
would be NULL whencheckpointing_ == false
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think so, @stiepan ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Me neither.