Skip to content
Snippets Groups Projects
Commit f9432e10 authored by Jerome Hue's avatar Jerome Hue
Browse files

Rename FixedNBitFlipOp

parent 1af57775
No related branches found
No related tags found
No related merge requests found
Pipeline #72898 failed
......@@ -24,7 +24,7 @@
namespace Aidge {
// Operator implementation entry point for the backend
using FixedNBitFlipImpl_cpu = OperatorImpl_cpu<FixedNBitFlip_Op,
using FixedNBitFlipImpl_cpu = OperatorImpl_cpu<FixedNBitFlipOp,
void(const void *,
void *,
std::size_t,
......@@ -34,7 +34,7 @@ using FixedNBitFlipImpl_cpu = OperatorImpl_cpu<FixedNBitFlip_Op,
)>;
// Implementation entry point registration to Operator
REGISTRAR(FixedNBitFlip_Op, "cpu", Aidge::FixedNBitFlipImpl_cpu::create);
REGISTRAR(FixedNBitFlipOp, "cpu", Aidge::FixedNBitFlipImpl_cpu::create);
} // namespace Aidge
#endif /* AIDGE_CPU_OPERATOR_NBITFLIPIMPL_H_ */
......@@ -6,6 +6,6 @@ static constexpr const int PROJECT_VERSION_MAJOR = 0;
static constexpr const int PROJECT_VERSION_MINOR = 6;
static constexpr const int PROJECT_VERSION_PATCH = 0;
static constexpr const char * PROJECT_VERSION = "0.6.0";
static constexpr const char * PROJECT_GIT_HASH = "57954e1";
static constexpr const char * PROJECT_GIT_HASH = "1af5777";
}
#endif // VERSION_H
......@@ -25,7 +25,7 @@
template <>
void Aidge::FixedNBitFlipImpl_cpu::forward() {
const FixedNBitFlip_Op& op_ = dynamic_cast<const FixedNBitFlip_Op&>(mOp);
const FixedNBitFlipOp& op_ = dynamic_cast<const FixedNBitFlipOp&>(mOp);
std::shared_ptr<Tensor> in0 = op_.getInput(0);
std::shared_ptr<Tensor> out0 = op_.getOutput(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