~ubuntu-branches/ubuntu/wily/julia/wily

« back to all changes in this revision

Viewing changes to examples/preduce.jl

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-02-06 17:54:29 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130206175429-13br5kqpkfjqdmre
Tags: 0.0.0+20130206.git32ff5759-1
* New upstream snapshot.
* debian/copyright: reflect upstream changes
* debian/rules: update get-orig-source to reflect upstream changes
   + Don't ship nginx
   + Adapt for new configure-random target in deps/Makefile
* Enable build of Tk wrapper.
   + debian/control: add build dependency on tk-dev
   + debian/rules: add tk rule to build-arch
* debian/julia.install: install VERSION and COMMIT files
* no-webrepl.patch: new patch
* Refresh other patches
* Add source override for config.status file under deps/random/

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
end
29
29
 
30
30
function reduce(f, v::DArray)
31
 
    mapreduce(f, fetch,
 
31
    mapreduce(fetch, f,
32
32
              { @spawnat p reduce(f,localize(v)) for p = procs(v) })
33
33
end
34
34