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

« back to all changes in this revision

Viewing changes to test/perf2/perf2.jl

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-02-11 03:51:26 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130211035126-hap464pbhd97wjbl
Tags: 0.1~20130211.git86fbe98d-1
* New upstream snapshot.
* debian/control:
   + add git to Recommends (for Julia package manager)
   + remove dependencies on libglpk-dev (it moved to its own package)
   + add explicit dependency on libgmp10 (there is no more a wrapper)
* fix-clean-rules.patch: remove patch, applied upstream
* gsvddense_blasint.patch: new patch
* Refresh other patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    writecsv(io, rand(100000,4))
101
101
end
102
102
 
103
 
function parse()
 
103
function parsecsv()
104
104
    file = EachLine(open("random.csv"))
105
105
    for line in file
106
106
        line = split(line, ',')
107
107
    end
108
108
end
109
109
 
110
 
@timeit parse() "splitline"
 
110
@timeit parsecsv() "splitline"
111
111
 
112
112
rm("random.csv")
113
113