Open Weyne168 opened 8 years ago
@Weyne168 The file includes operations that calculate the value of two operands, e.g, a+b, a - b. Bitwise operations like XOR are not included currently. You need to implement these OPs.
Are you trying to implement binary net?
yes, I am trying to implement it with mxnet. It is a good choice?
i don't know how to implement binarynet with mxnet. https://github.com/itayhubara/BinaryNet.
Can you propose a list of operator like the #2302, so we can have some idea on what to be done?
I had some experience on FP16 implementation. But those changed are not merged yet(the lstm needs extra input which involves too many changes in example). I'll list the problems I met in fp16 below, so you have a idea of what you might encounter.
Is this still an active issue? Am interested as I just implemented a bunch of new operators to MxNet and also am interested in running binarized networks.
Has anyone made any progress here?
In terms of implementation, it seems for me that we would have to make some similar technique as C++ does for vector
I wish there is xor operator. +1 for this feature request
Recently, accelerating the CNN by the hardware operation , such as binary shift, XOR, is very popular.
I have read the source code of mxnet, and I found that there are some files named by elementwise_binary_xxx.
I wonder that whether they have realized bit wise operation in some special cases, for example, to binary weights and binary inputs, bit wise operation can be conduct?
thanks!