[julia-users] Re: Hello, How do I find my mentor for GSoC2016?

2016-03-18 Thread Jiahao Chen
> I tried creating my own matrix power function using Python before, I used data parallelism(tiling), task parallelism(using topology) and pipelining parallelism(using lowered dependency). As you say, attacking all levels of parallelism is very ambitious. However, I think working on just one of

[julia-users] Re: [ECCN] What packages are included in the basic distribution of Julia

2016-03-18 Thread Páll Haraldsson
On Friday, March 18, 2016 at 9:39:11 AM UTC, Páll Haraldsson wrote: > > > On Thursday, March 17, 2016 at 8:27:33 PM UTC, Naiyuan Chiang wrote: >> >> >> > There is no reason for Julia to have crypto, since it is a language, and > as you say Crypto can be and is a package you can use. Others incl

[julia-users] Re: Registering / renaming CppWrapper

2016-03-18 Thread Avik Sengupta
Yes go for it. It'll be better for the repository to end in .jl. As to the name, let's see if there are any creative suggestions on this thread, but it's ultimately your decision. Regards - Avik On Friday, 18 March 2016 08:52:53 UTC, Bart Janssens wrote: > > Hi, > > I'd like to register the Cp

[julia-users] Re: ReverseDiffSource on a nonlinear function with three plus variables

2016-03-18 Thread Frederic Testard
Sorry for the late reply too. Kristoffer is right, this is issue #25. I should really look into it, sorry.

[julia-users] Re: ANN: VegaLite.jl

2016-03-18 Thread Dominik Moritz
I have a first layering PR at https://github.com/vega/vega-lite/pull/1241 but it'll take a bit of testing before we officially announce it. But layering is coming. On Friday, March 18, 2016 at 3:05:07 PM UTC-7, Frederic Testard wrote: > > Thank you all for your encouraging interest ! > > Randy,

[julia-users] Re: Custom ranges

2016-03-18 Thread James Fairbanks
If you want to reap the benefits of the UnitRange, such as a constant sized representation regardless of collection size, then you can define your own type that satisfies the iterator interface. This is the most flexible option and an explanation can be found in http://docs.julialang.org/en/releas

[julia-users] Re: ANN: VegaLite.jl

2016-03-18 Thread Frederic Testard
Thank you all for your encouraging interest ! Randy, sorry if you were working on VegaLite too. I am totally open on looking into a common approach with Vega.jl if it makes sense. The question is I think: should the user chose the plotting grammar from a single package by setting a parameter (

[julia-users] Re: QML (Qt5) binding for Julia (GSOC?)

2016-03-18 Thread Bart Janssens
This could be either a missing Qt package, or the version is not recent enough. I don't use any recent QML commands, so it's safe to use QtQuick 2.0 and Controls and Layouts version 1.0. I have updated the main.qml in the repo. If you pass just QString("main.qml") as argument to QQmlApplication

[julia-users] Re: suppress deprecation warnings on all workers? (julia 0.4.3)

2016-03-18 Thread Ryan Gardner
Nevermind. It was right there. For anyone reading this later, what I was looking for was: addprocs(num_procs, exeflags="--depwarn=no") (However, if there is a way to set depwarn=no in the code, that would still be valuable.) Thanks. Ryan On Wednesday, March 16, 2016 at 9:52:47 AM UTC-4

Re: [julia-users] Re: Performance regression with latest master?

2016-03-18 Thread 'Bill Hart' via julia-users
It's actually a regression of more than a factor of 2 on the machine I'm using. I'll try to further refine the commit range by hand today. Bill. On Wednesday, 16 March 2016 20:45:00 UTC+1, Bill Hart wrote: > > I can only partially bisect. > > The regression happens between: > > 75fc9104ee24 (mo

[julia-users] Re: ANN: NetworkViz.jl - Julia module for graph visualization

2016-03-18 Thread Abhijith Anilkumar
I'm ready to work in that direction. I always wanted to make this package work with packages other than LightGraphs and also backend-independent. I'll create a solid plan on what I intend to implement and post it here. On Friday, March 18, 2016 at 3:15:35 AM UTC+5:30, Simon Danisch wrote: > > S

[julia-users] Re: Google SoC '16: Native Julia solvers for ordinary differential equations, Julia|Quantum>, and Native Julia implementation of Holonomic Functions

2016-03-18 Thread Chris Rackauckas
Taking a quick look at the paper you linked makes big use of symbolic computing algorithms to compute things like a Groebner basis. To get the infrastructure for what's proposed you would need a whole symbolic computing library, which is why they used Mathematica. I think implementing a fast

[julia-users] JuliaCon 2016: Call For Proposals Deadline Extension

2016-03-18 Thread Pontus Stenetorp
Everyone, Due to popular request we will be extending the deadline for the call for proposals over the weekend. We hope that this will allow those that are running low on time to polish up their proposals and submit them over the next few days. Proposal submission form: http://goo.gl/forms/eXlP0

[julia-users] how to write a julia rand conformant randfloat() with exponent range given

2016-03-18 Thread Jeffrey Sarnoff
I am not that familiar with rand stuff, and I'd like to get this right. The result should play well with other rand functions and give n ldexp(randSignficand, randExponent) values where the range for the significand and the exponent are specifiable. Thanks for any guidance.

[julia-users] Re: how to write a julia rand conformant randfloat() with exponent range given

2016-03-18 Thread Jeffrey Sarnoff
So far, I have: import Base:ldexp @vectorize_2arg Any ldexp function randfloat{T<:AbstractFloat}(sigRange::FloatRange{T},expRange::UnitRange{Int},n::Int) s = rand(sigRange,n) e = rand(expRange,n) ldexp(s,e) end On Saturday, March 19, 2

Re: [julia-users] Re: regression from 0.43 to 0.5dev, and back to 0.43 on fedora23

2016-03-18 Thread Milan Bouchet-Valat
Le mercredi 16 mars 2016 à 09:25 -0700, Johannes Wagner a écrit : > just a little update. Tested some other fedoras: Fedora 22 with llvm > 3.8 is also slow with julia 0.5, whereas a fedora 24 branch with llvm > 3.7 is faster on julia 0.5 compared to julia 0.4, as it should be > (speedup from inner

Re: [julia-users] Documentation effort for GSoC

2016-03-18 Thread Mike Innes
Hey Morten, This looks like an interesting idea. Is (a) doable in three months? It might be tricky, especially with the current state of Julia's web tooling. I recommend taking a look over the Docile and Lexicon packages – Michael Hatherly has made really great progress with some of these ideas,

[julia-users] Re: ANN: VegaLite.jl

2016-03-18 Thread Dominik Moritz
This is fantastic. I'll add links to all the packages that use/build on Vega-Lite to the website. Let us know if there is something we can help with. On Tuesday, March 15, 2016 at 2:39:56 PM UTC-7, Frederic Testard wrote: > > The julia package VegaLite has just been added to the official repo (

[julia-users] Re: Is there going to be an abstract type/trait-ocalypse?

2016-03-18 Thread Jeffrey Sarnoff
There is much discussion about the ways forward here is a good place to look: https://github.com/JuliaLang/julia/issues/6975 fwiw, many people would like to be able to meld multiple kinds to express qualia and there is active interest in finding the elegant answer. On Thursday, March 17, 2016

[julia-users] Re: How to get define a function from the AST or how to get @everywhere to export a function it was called with

2016-03-18 Thread Jonathan Anderson
after some iteration i found the following works function run_slurm_helper(ex,num_workers) println(ex) addprocs(SlurmManager(num_workers), partition="quick", t="00:01:00") output = [] for i in workers() out = fetch(@spawnat i eval(ex)) push!(output, out) end

[julia-users] Re: [ANN] ScikitLearn.jl

2016-03-18 Thread Sisyphuss
Cool! On Friday, March 18, 2016 at 5:11:47 PM UTC+1, Cedric St-Jean wrote: > > I'm happy to announce ScikitLearn.jl > and ScikitLearnBase.jl > : a library pair that > brings the scikit-learn interface to

Re: [julia-users] Where to publish numerical work using julia

2016-03-18 Thread Sheehan Olver
I think "not scientifically novel" is probably not the right choice of words: engineering is "science", and I would include software engineering in this. If it's not novel on the software engineering side, and not novel on the underlying algorithm, then what's the point of publishing a paper?