Serving the Quantitative Finance Community

Search found 37 matches

by ww250
August 23rd, 2011, 7:41 am
Forum: Programming and Software Forum
Topic: parallel sorting algos
Replies: 6
Views: 21129

parallel sorting algos

<t>QuoteOriginally posted by: ww250I can think of parallel quicksort and mergesort, any other parallel sorting algorithms being implemented? And, what's the performance advantage/tradeoff of implementing them in a parallel way? It seems to me that creating loads of pthreads doing small amount of job...
by ww250
August 17th, 2011, 10:46 pm
Forum: Programming and Software Forum
Topic: How to make sure that a multithreaded C++ program is run by ALL cores on a multicore server ?
Replies: 24
Views: 26201

How to make sure that a multithreaded C++ program is run by ALL cores on a multicore server ?

QuoteOriginally posted by: demha Agree that HT is a shed load of Intel marketing bull shit.Why it's BS?
by ww250
August 14th, 2011, 5:22 pm
Forum: Programming and Software Forum
Topic: How to make sure that a multithreaded C++ program is run by ALL cores on a multicore server ?
Replies: 24
Views: 26201

How to make sure that a multithreaded C++ program is run by ALL cores on a multicore server ?

<r>Use 'sar' instead to look at each core (<URL url="http://www.cyberciti.biz/tips/how-do-i-find-out-linux-cpu-utilization.html"><LINK_TEXT text="http://www.cyberciti.biz/tips/how-do-i- ... ation.html">http://www.cyberciti.biz/tips/how-do-i-find-out-linux-cpu-utilization.html</LINK_TEXT></URL>), 'to...
by ww250
August 14th, 2011, 4:53 pm
Forum: Programming and Software Forum
Topic: How to make sure that a multithreaded C++ program is run by ALL cores on a multicore server ?
Replies: 24
Views: 26201

How to make sure that a multithreaded C++ program is run by ALL cores on a multicore server ?

<t>The load-balancing is done by the OS. The OS scheduler migrates threads between different cores. You just give enough threads for the CPU to schedule them, you can check your CPU utilisation (all cores). If the workload is sufficiently large, you should see all the cores are working hard, i.e., a...
by ww250
August 14th, 2011, 2:31 pm
Forum: Programming and Software Forum
Topic: parallel sorting algos
Replies: 6
Views: 21129

parallel sorting algos

<t>I can think of parallel quicksort and mergesort, any other parallel sorting algorithms being implemented? And, what's the performance advantage/tradeoff of implementing them in a parallel way? It seems to me that creating loads of pthreads doing small amount of jobs is a waste and incurs huge ove...
by ww250
February 19th, 2011, 12:15 pm
Forum: Trading Forum
Topic: equity derivatives trading
Replies: 4
Views: 26316

equity derivatives trading

hi, i've been trading equity derivatives for a couple of months, mainly for the leverage of derivatives compared with equities. would like to know more about trading strategies, any pointers to where i should start, for example, books. many thanks.
by ww250
November 17th, 2010, 9:54 pm
Forum: Programming and Software Forum
Topic: GPU vs SIMD
Replies: 62
Views: 41296

GPU vs SIMD

An irrelevant or stupid point, why everybody wants to have their computers superfast, as they only need their computers to be faster than their competitors? Computers, here I mean computing platforms with applications running on them.
by ww250
November 16th, 2010, 11:37 pm
Forum: Programming and Software Forum
Topic: Looking for suggestions of Ipad GUI development tools
Replies: 3
Views: 23862

Looking for suggestions of Ipad GUI development tools

get a macbook pro or imac would be the first.step
by ww250
November 16th, 2010, 11:33 pm
Forum: Programming and Software Forum
Topic: GPU vs SIMD
Replies: 62
Views: 41296

GPU vs SIMD

simd just means single instruction multiple data, it's a computer architecture term, as vesus to mimd or sisd, nowadays data engines can do superscalar simd with a lot more microarchitecture features.
by ww250
November 9th, 2010, 11:17 pm
Forum: Programming and Software Forum
Topic: QuantLib Conference
Replies: 20
Views: 38695

QuantLib Conference

QuoteThe seminar brings people together which promotes interaction. Good initiative.Moment of truth to match user id with real person.
by ww250
November 8th, 2010, 9:06 pm
Forum: Programming and Software Forum
Topic: QuantLib Conference
Replies: 20
Views: 38695

QuantLib Conference

Anyone going? 18Jan2011 in London
by ww250
October 24th, 2010, 12:13 pm
Forum: Programming and Software Forum
Topic: Interactive Broker API
Replies: 8
Views: 27650

Interactive Broker API

<t>QuoteOriginally posted by: outrunQuoteOriginally posted by: ww250QuoteOriginally posted by: outrunWhat about using it only for order routing, and get the quotes from somewhere else?I was thinking so, bUT don't know which level 2 data provider to use, would appreciate any suggestions.I could use t...
by ww250
October 24th, 2010, 2:34 am
Forum: Programming and Software Forum
Topic: Interactive Broker API
Replies: 8
Views: 27650

Interactive Broker API

QuoteOriginally posted by: outrunWhat about using it only for order routing, and get the quotes from somewhere else?I was thinking so, bUT don't know which level 2 data provider to use, would appreciate any suggestions.
by ww250
October 23rd, 2010, 1:05 pm
Forum: Programming and Software Forum
Topic: Interactive Broker API
Replies: 8
Views: 27650

Interactive Broker API

QuoteOriginally posted by: strimp099How are you connecting to the API? (MATLAB, COM, Java, etc.)C++, THX
by ww250
October 18th, 2010, 10:25 pm
Forum: Programming and Software Forum
Topic: Draw a payoff curve in c++
Replies: 1
Views: 23458

Draw a payoff curve in c++

I guess gnuplot can be used to draw a graph given a dataset input, any simpler way than this? heard that language like slang has curve as a basic type.