Quote from mcgene4xpro:
Quote from tropicalknight:
cuda [/QUOTE
Using GPU, is this what you mean? Do you have a sources for specific reading about this subject?
Try the NVIDIA Website. If you have a supported NVIDIA chip you can download the drivers and SDK examples etc. code is there for monte carlo sims for vanilla option calculations etc.
Also Google: GPGPU (General Purpose Programming on GPUs)
GPU computing might be a possibility for your scenario but you have to factor in the latency involved in sending data to/from the GPU depending on what hardware setup you are using. Newer hardware and chips aim to eliminate this latency.
You haven't really provided enough info to give a sensible answer though.
Do all of the calculations have to finish before the next tick arrives? Or can the calculations arrive some time later in a continuous stream as fast as new ticks come along but with an initial delay?
It may be the case that a decent multi-core CPU can handle the job without problems - have you tried? As somebody else suggested premature optimization is considered a sin.