Remove unused memoized_ variable (#852)

This commit is contained in:
Kenneth Heafield 2021-04-28 13:28:50 +01:00 committed by GitHub
parent 1c8ee95a54
commit 36b4b69d7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -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

View File

@ -145,8 +145,6 @@ protected: // (these are protected, not private, for ONNX exporting)
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