
www.Usenet.com
| <-- __Chronological__ --> | <-- __Thread__ --> |
In article <[EMAIL PROTECTED]>, Thomas Gutzler <[EMAIL PROTECTED]> writes: |> |> I'm looking for an error detection method for hardware multipliers. I |> found a paper describing parity prediction but this seems to be large |> overhead and I'm trying to keep the overhead as small as possible. |> I also found a paper that sais: take the self-dual complement of a |> funcion (multiplication), XOR the results, if the output constantly |> changes everything is allright. But in this case I have to have the |> functional description of every output bit of, in my case, a 32 bit |> multiplier to generate the self-dual complement - I don't have that. What sort of multiplication? If it is full precision, then you could check the inputs and output modulo N, for a few small prime N, and also check the sign and position of the most significant bit. That would be pretty reliable. Regards, Nick Maclaren.
| <-- __Chronological__ --> | <-- __Thread__ --> |