Skip to content
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

Remove unused memoized_ variable #852

Merged
merged 1 commit into from
Apr 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Developer documentation framework based on Sphinx+Doxygen+Breathe+Exhale
- Expresion graph documentation (#788)
- Graph operators documentation (#801)
- Remove unused variable from expression graph

## [1.10.0] - 2021-02-06

Expand Down
2 changes: 0 additions & 2 deletions src/graph/expression_graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,6 @@ class ExpressionGraph : public std::enable_shared_from_this<ExpressionGraph> {
Ptr<Tensors> tensors_;
private:

std::unordered_map<size_t, std::vector<Expr>> memoized_;

Type defaultElementType_{Type::float32}; // Type used for storing parameters, currently all parameters have to have the same type

bool inferenceOnly_{false}; // a flag holds whether the graph is used for inference only
Expand Down