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

Fixed yet another error

parent ed22ae75
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ class ConvDepthWise_Op : public Operator,
setDatatype(DataType::Float32);
}
constexpr void associateInput(const IOIndex_t /*inputIdx*/, std::shared_ptr<Data> data) override final {
constexpr void associateInput(const IOIndex_t inputIdx, std::shared_ptr<Data> data) override final {
assert(inputIdx < 3 && "operators supports only 3 inputs");
assert(strcmp(data->type(), Tensor::Type) == 0 && "input data must be of Tensor type");
......
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