Skip to content

Commit

Permalink
Remove unused memoized_ variable (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
kpu authored Apr 28, 2021
1 parent 1c8ee95 commit 36b4b69
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,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

0 comments on commit 36b4b69

Please sign in to comment.