Skip to content
Snippets Groups Projects
Commit d125c3d3 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Merge branch 'memorize-input-param-to-data' into 'dev'

fix: Change init input of Memorize from Param to Data input category

See merge request !294
parents d122347b 9de0607e
No related branches found
No related tags found
2 merge requests!318[Upd] release verision 0.5.0,!294fix: Change init input of Memorize from Param to Data input category
Pipeline #63080 passed
...@@ -76,7 +76,7 @@ void Aidge::Memorize_OpImpl::forward() { ...@@ -76,7 +76,7 @@ void Aidge::Memorize_OpImpl::forward() {
const std::string Aidge::Memorize_Op::Type = "Memorize"; const std::string Aidge::Memorize_Op::Type = "Memorize";
Aidge::Memorize_Op::Memorize_Op(const std::uint32_t endStep) Aidge::Memorize_Op::Memorize_Op(const std::uint32_t endStep)
: OperatorTensor(Type, {InputCategory::Data, InputCategory::Param}, 2), : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 2),
mAttributes(std::make_shared<Attributes_>( mAttributes(std::make_shared<Attributes_>(
attr<MemorizeAttr::ScheduleStep>(0), attr<MemorizeAttr::ScheduleStep>(0),
attr<MemorizeAttr::ForwardStep>(0), attr<MemorizeAttr::ForwardStep>(0),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment