Software Archive
Read-only legacy content
17060 Discussions

using native 64-bit integer arithmetic from C#

fritzfranz
Beginner
352 Views

I have written a bunch of mathematical software in C#, mainly to do some experiments in Number theory (e.g. arbitrary precision integer arithmetic).

I would like to make optimal use of my Intel I7 64-bit machine and be able to compute things like

(a * b) % c (a, b, c being 64-bit integers) using native machine instructions without having to split the numbers into multiple pieces.

Questions:

- what is the best way to extend C# with assembler code for very high performance?

- what dies the MKL provide in this respect

0 Kudos
2 Replies
steph143
Beginner
352 Views
I was doing a similar project and had the same problems. I can't remember what we ended up doing but I believe we split the numbers into mulitples.






-----------------------------------------------------------------------------------------------------------------------
AT45DB642D-CNU
AT45DB321D-SU
TMS320F28335PGFA
AT45DB161D-SU

AT45DB041D-SU
AT45DB642D-TU
0 Kudos
neni
New Contributor II
352 Views
0 Kudos
Reply