Thanks I’ll move it over
From: Till Schneidereit [mailto:[email protected]] Sent: Thursday, April 04, 2013 2:58 PM To: Norm Rubin Cc: [email protected] Subject: Re: parallel map and dot product Hi Norm, the people behind ParallelArray mostly aren't on es-discuss, so you'll probably have more luck here: https://lists.mozilla.org/listinfo/dev-tech-js-engine-rivertrail hth, till On Thu, Apr 4, 2013 at 8:31 PM, Norm Rubin <[email protected]<mailto:[email protected]>> wrote: I’ve started to read through the parallel JavaScript proposal and have a novice question How would you write a dot product Given: P1 = parallelArray(1,2,3) P2 = ParallelArray(4,5,6) We want to compute 1*4 + 2*5 + 3*6 As far as I can tell, you need a reduce to do the sums, so you first need to construct P12 = ParallelArray(1*4, 2*5, 3*6) Is there a way to generate this using map? ________________________________ This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. ________________________________ _______________________________________________ es-discuss mailing list [email protected]<mailto:[email protected]> https://mail.mozilla.org/listinfo/es-discuss
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

