Skip to content
Snippets Groups Projects
Commit d6f6a15a authored by Houssem ROUIS's avatar Houssem ROUIS
Browse files

fix ReduceMean call

parent 98ab2851
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!178Learning backend cuda
......@@ -125,7 +125,7 @@ Aidge::Tensor Aidge::Tensor::mean() const {
// No need to specify the list of all axes!
std::vector<std::int32_t> axes(nbDims());
std::iota(std::begin(axes), std::end(axes), 0);
auto mean_ = ReduceMean_Op(axes, 0);
auto mean_ = ReduceMean_Op(axes, false, false);
mean_.associateInput(0, std::make_shared<Tensor>(*this));
mean_.setDataType(dataType());
mean_.setDataFormat(dataFormat());
......
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