Which of these gsoc project should I choose?

Hi,

I intend to work on julia as a GSOC project this year. These are the ideas that I have in mind:

  1. Bringing FunctionalCollections to a usable state. I’m familiar with the clojure’s implementations of persistent collections and it looks like FunctionalCollections are inspired by them. These are some of the improvements that could be made to them:
    a) Introduce transient versions of these libraries
    b) For map operation, we could create a clone of the input collection with similar trie structure and undefined values, and then iterate over it while filling in the mapped values.
    c) Experiment with different values of shift width based on the size of element type, to account for cache line size. See if that affects performance in any way.
    d) Go through the implementation of some of the tools mentioned here, see if there’s anything useful which could be ported over to julia.

The ideas page mentions that functional collections could be used “to accelerate computational problems in the compiler”. Isn’t it the case that functional collections trade speed for guarantees like simpler multi-threading? How can they be used in julia to speed up computational problems?

  1. Create a package management tool similar to cargo for julia environment, preferably in julia itself. The community bonding period will be spent understanding how package management works in julia, and reading the source of Pkg.jl. The end result will be something similar to npm or cargo, which would allow users to easily setup a template project with minimal work, with support for tests, benchmarks and preferably custom targets.
    Maybe the Pkg repl already provides most of the stuff mentioned here, but it’s hidden in the julia repl. Having a binary specifically for project management will be very nice to have.
3 Likes

I think the best predictor of a successful GSOC project is being interested in it. These are very different projects, and you should go with the one you find more intriguing.

2 Likes

you should go with the one you find more intriguing

In that case I would like to go with FunctionalCollections. I’ve shared the draft of my proposal for this project from the GSOC website. Would appreciate feedback on that.