I was able to improve the speeds I get using Fortran to implement standard multiplication.
By, "standard multiplication", I mean the way you would multiply 123 times 456, with a pencil and paper.
Below is a test program and its output.
The support modules are not shown.
But, upon request I would post them.
In the program, first two random integers of "n" digits are generated in base 10.
Then, the two base 10 integers are converted to base 10^8.
The multiplication is performed in base 10^8.
And, the product is converted back to base 10.
So, the program multiplies two decimal n digit random integers, for n equals 10,000 to 100,000.
The time (the time includes the base conversions) is shown in the output for each multiplication.
For my computer, the times seem pretty fast.
' code (modules not shown) ---------------------------------------------------------------------------------------------- program cat use conversions use random use reg1001 use reg1008 use time implicit none type(reg1001type)::r11,r12,r13 type(reg1008type)::r81,r82,r83 real::et integer::i,j call allocateseeds() call setdefaultseed() print* print'(a)','n seconds' do i=10000,100000,10000 j=i/8+1 call allocatereg01(r11,i) call allocatereg01(r12,i) call allocatereg01(r13,2*i) call allocatereg08(r81,j) call allocatereg08(r82,j) call allocatereg08(r83,2*j) call setrandomreg01(r11) call setrandomreg01(r12) call startclock() call reg1001toreg1008(r11,r81) call reg1001toreg1008(r12,r82) call fasterstandardmult08(r81,r82,r83) call reg1008toreg1001(r83,r13) call stopclock() call elapsedtime(et) print'(i6, f9.3)',i,et call deallocatereg01(r11) call deallocatereg01(r12) call deallocatereg01(r13) call deallocatereg08(r81) call deallocatereg08(r82) call deallocatereg08(r83) enddo print* end program ' output ---------------------------------------------------------------------------------------------------------------- C:\Users\root\Desktop\fortran\cat\bin\Release>cat n seconds 10000 0.250 20000 0.998 30000 2.231 40000 3.978 50000 6.271 60000 8.939 70000 12.246 80000 16.037 90000 20.202 100000 24.960 C:\Users\root\Desktop\fortran\cat\bin\Release>
Bookmarks