Summer of Code - Getting Started: Difference between revisions
(โโopenlibm: Add great list by User:Shreyaswikriti ๐๐) |
(โโSuggested projects: Add Symbolic package project again.) |
||
Line 86: | Line 86: | ||
* '''Potential mentors''' | * '''Potential mentors''' | ||
: Francesco Faccio, [https://octave.discourse.group/u/cdf Carlo de Falco], [https://octave.discourse.group/u/marco_caliari Marco Caliari], Jacopo Corno, [https://octave.discourse.group/u/schoeps Sebastian Schรถps] | : Francesco Faccio, [https://octave.discourse.group/u/cdf Carlo de Falco], [https://octave.discourse.group/u/marco_caliari Marco Caliari], Jacopo Corno, [https://octave.discourse.group/u/schoeps Sebastian Schรถps] | ||
== Symbolic package == | |||
The [[Symbolic package]] provides symbolic computing and other [https://en.wikipedia.org/wiki/Computer_algebra_system computer algebra system] tools.ย The main component of Symbolic is a pure m-file class "@sym" which uses the Python package [https://www.sympy.org SymPy] to do (most of) the actual computations.ย The package aims to expose the full functionality of SymPy while also providing a high level of compatibility with the Matlab Symbolic Math Toolbox.ย The Symbolic package requires communication between Octave and Python.ย In 2016 another GSoC project successfully re-implemented this communication using the new [[Pythonic|Pythonic package]]. | |||
This project proposes to go further: instead of using Pythonic only for the communication layer, we'll use it throughout the Symbolic project.ย For example, we might make "@sym" a subclass of "@pyobject".ย We also could stop using the "python_cmd" interface and use Pythonic directly from methods.ย The main goal was already mentioned: to expose the ''full functionality'' of SymPy.ย For example, we would allow OO-style method calls such as <code>f.diff(x)</code> instead of <code>diff(f, x)</code>. | |||
* '''Project size''' [[#Project sizes | [?]]] and '''Difficulty''' | |||
: ~350 hours (medium) | |||
* '''Required skills''' | |||
: Octave, C/C++, Python; object-oriented programming (OOP) in Octave | |||
* '''Potential mentors''' | |||
: [https://octave.discourse.group/u/cbm Colin B. Macdonald], [https://octave.discourse.group/u/mtmiller Mike Miller], Abhinav Tripathi | |||
== Improve TIFF image support == | == Improve TIFF image support == |
Revision as of 06:52, 30 March 2022
Since 2011 the GNU Octave project has successfully mentored:
in Summer of Code (SoC) programs by Google and ESA.
Those SoC programs aim to advertise open-source software development and to attract potential new Octave developers.
Steps toward a successful application
- ๐๐ฌ We want to get to know you (before the deadline). Communicate with us.
- Join Octave Discourse or IRC. Using a nickname is fine.
- Show us that you're motivated to work on Octave ๐ป. There is no need to present an overwhelming CV ๐; evidence of involvement with Octave is more important.
- If you never talked to us, we will likely reject your proposal, even it looks good ๐ฎ
- ๐ฉโ๐ฌ Get your hands dirty.
- We are curious about your programming skills ๐
- Your application will be much stronger if you fix Octave bugs or submit patches before or during the application period.
- You can take a look at the short projects for some simple bugs to start with.
- Use Octave!
- If you come across something that does not work the way you like โก๏ธ try to fix that ๐ง
- Or if you find a missing function โก๏ธ try to implement it.
- We are curious about your programming skills ๐
- ๐๐ก Tell us what you are going to do.
- Do not write just to say what project you're interested in. Be specific about what you are going to do, include links ๐, show us you know what you are talking about ๐ก, and ask many smart questions ๐ค
- Remember, we are volunteer developers and not your boss ๐
- ๐ Prepare your proposal with us.
- Try to show us as early as possible a draft of your proposal ๐
- If we see your proposal for the first time after the application deadline, it might easily contain some paragraphs not fully clear to us. Ongoing interaction will give us more confidence that you are capable of working on your project ๐๐
- Then submit the proposal following the applicable rules, e.g. for GSoC. ๐จ
How do we judge your application?
Depending on the mentors and SoC program there are varieties, but typically the main factors considered would be:
- You have demonstrated interest in Octave and an ability to make substantial modifications to Octave
- The most important thing is that you've contributed some interesting code samples to judge your skills. It's OK during the application period to ask for help on how to format these code samples, which normally are Mercurial patches.
- You showed understanding of your topic
- Your proposal should make it clear that you're reasonably well versed in the subject area and won't need all summer just to read up on it.
- Well thought out, adequately detailed, realistic project plan
- "I'm good at this, so trust me" isn't enough. In your proposal, you should describe which algorithms you'll use and how you'll integrate with existing Octave code. You should also prepare a project timeline and goals for the midterm and final evaluations.
What you should know about Octave
GNU Octave is mostly written in C++ and its own scripting language that is mostly compatible with Matlab. There are bits and pieces of Fortran, Perl, C, awk, and Unix shell scripts here and there. In addition to being familiar with C++ and Octave's scripting language, you as successful applicant will be familiar with or able to quickly learn about Octave's infrastructure. You can't spend the whole summer learning how to build Octave or prepare a changeset and still successfully complete your project ๐
You should know:
- How to build Octave from its source code using the GNU build system.
- Read in this wiki: Developer FAQ, Building
- Tools to know: gcc, make
- How to submit patches (changesets).
- Read in this wiki: Contribution guidelines, Mercurial
- Tools to know: Mercurial (hg), git
Suggested projects
The following suggested projects are distilled from the Projects page for the benefit of potential SoC participants. You can also look at our completed past projects for more inspiration.
openlibm
Over the years Octave faced many issues (see the openlibm page in this wiki for examples) about different C mathematical functions library (in short: "libm") implementations on various systems. To overcome similar issues, developers of the Julia Programming Language started the openlibm project "to have a good libm [ ...] that work[s] consistently across compilers and operating systems, and in 32-bit and 64-bit environments". openlibm is supported by major Linux distributions (e.g. Debian/Ubuntu, RHEL/Fedora,SLES/openSUSE, ...) and the MS Windows MXE package was added as well.
This project consists of learning about the usage of GNU Autotools in Octave and ways to detect openlibm. As the next step the Octave code base has to be reviewed under the guidance of a mentor and relevant code changes should be performed. Finally, relevant code changes in the Octave test suite are performed and tested on various Linux, MS Windows, and macOS machines with the help of the Octave community.
- Project size [?] and Difficulty
- ~175 hours (easy)
- Required skills
- Octave, C/C++, Autotools
- Potential mentors
ode15{i,s} : Matlab Compatible DAE solvers
An initial implementation of Matlab compatible Differential Algebraic Equations (DAE) solvers, ode15i
and ode15s
, based on SUNDIALS,
was done by Francesco Faccio during GSoC 2016. The code is maintained in the main Octave repository and consists mainly of the following three files: libinterp/dldfcn/__ode15__.cc, scripts/ode/ode15i.m and scripts/ode/ode15s.m.
The decic
function for selecting consistent initial conditions for ode15i can be made more Matlab compatible by using another algorithm. Another useful extension is to make ode15{i,s} work with datatypes other than double and to improve interpolation at intermediate time steps.
- Project size [?] and Difficulty
- ~350 hours (medium)
- Required skills
- Octave, C/C++; familiarity with numerical methods for DAEs
- Potential mentors
- Francesco Faccio, Carlo de Falco, Marco Caliari, Jacopo Corno, Sebastian Schรถps
Symbolic package
The Symbolic package provides symbolic computing and other computer algebra system tools. The main component of Symbolic is a pure m-file class "@sym" which uses the Python package SymPy to do (most of) the actual computations. The package aims to expose the full functionality of SymPy while also providing a high level of compatibility with the Matlab Symbolic Math Toolbox. The Symbolic package requires communication between Octave and Python. In 2016 another GSoC project successfully re-implemented this communication using the new Pythonic package.
This project proposes to go further: instead of using Pythonic only for the communication layer, we'll use it throughout the Symbolic project. For example, we might make "@sym" a subclass of "@pyobject". We also could stop using the "python_cmd" interface and use Pythonic directly from methods. The main goal was already mentioned: to expose the full functionality of SymPy. For example, we would allow OO-style method calls such as f.diff(x)
instead of diff(f, x)
.
- Project size [?] and Difficulty
- ~350 hours (medium)
- Required skills
- Octave, C/C++, Python; object-oriented programming (OOP) in Octave
- Potential mentors
- Colin B. Macdonald, Mike Miller, Abhinav Tripathi
Improve TIFF image support
Tag Image File Format (TIFF) is the de facto standard for scientific images. Octave uses the GraphicsMagic (GM) C++ library to handle TIFF and many others image formats. However, GM still has several limitations:
- GM has build option
quantum
which defines the bitdepth to use when reading an image:- Building GM with high quantum means that images of smaller bitdepth will take a lot more memory when reading.
- Building GM with low quantum will make it impossible to read images of higher bitdepth. It also means that the image needs to always be rescaled to the correct range.
- GM supports unsigned integers only, thus incorrectly reading files such as TIFF with floating-point data.
- GM hides details of the image such as whether the image file is indexed. This makes it hard to access the real data stored on file.
This project aims to implement better TIFF image support using libtiff, while leaving GM handle all other image formats. After writing a classdef interface to libtiff, improve the Octave functions imread
, imwrite
, and imfinfo
to make use of it.
- Project size [?] and Difficulty
- ~350 hours (medium)
- Required skills
- Octave, C/C++
- Potential mentors
PolarAxes and Plotting Improvements
Octave currently provides supports for polar axes by using a Cartesian 2-D axes and adding a significant number of properties and callback listeners to get things to work. What is needed is the implementation of a dedicated "polaraxes" object in C++. This will require creating a new fundamental graphics object type, and programming in C++/OpenGL to render the object. When "polaraxes" exists as an object type, then m-files will be written to access them, including polaraxes.m, polarplot.m, rticks.m, rticklabels.m, thetaticks, thetaticklabels.m, rlim.m, thetalim.m. This relates to bug #49804.
- Project size [?] and Difficulty
- ~350 hours (medium)
- Required skills
- Octave, C/C++; optional experience with OpenGL programming
- Potential mentors
Table datatype
In 2013, Matlab introduced a new table datatype to conveniently organize and access data in tabular form. This datatype has not been introduced to Octave yet (see bug #44571). However, there are two initial implementation approaches https://github.com/apjanke/octave-tablicious and https://github.com/gnu-octave/table.
Based upon the existing approaches, the goal of this project is to define an initial subset of table functions, which involve sorting, splitting, merging, and file I/O and implement it within the given time frame.
- Project size [?] and Difficulty
- ~350 hours (hard)
- Required skills
- Octave, C/C++
- Potential mentors
YAML encoding/decoding
YAML, is a very common human readable and structured data format. Unfortunately, GNU Octave (and Matlab) still lacks of builtin support of that omnipresent data format. Having YAML support, Octave can easily read and write config files, which often use YAML or JSON. The latter JSON format has been successfully implemented for Octave during GSoC 2020.
The goal of this project is to repeat the GSoC 2020 success story with Rapid YAML or another fast C/C++ library.
The first step is research about existing Octave/Matlab and C/C++ implementations, for example:
- https://code.google.com/archive/p/yamlmatlab/ (uses Java)
- http://vision.is.tohoku.ac.jp/~kyamagu/ja/software/yaml/ (uses Java)
Then evaluate (and to cherry pick from) existing implementations above, compare strength and weaknesses. After this, an Octave package containing en- and decoding functions (for example yamlencode
and yamldecode
) shall be created. This involves proper documentation of the work and unit tests to ensure the correctness of the implementation.
Finally, the package is considered to be merged into core Octave, probably after the GSoC project. However, it can be used immediately from Octave as package and is backwards-compatible with older Octave versions.
- Project size [?] and Difficulty
- ~350 hours (easy)
- Required skills
- Octave, C/C++
- Potential mentors
TISEAN package
The TISEAN package provides an Octave interface to TISEAN is a suite of code for nonlinear time series analysis. In 2015, another GSoC project started with the work to create interfaces to many TISEAN functions, but there is still work left to do. There are missing functions to do computations on spike trains, to simulate autoregresive models, to create specialized plots, etc. These are of importance for many scientific disciplines involving statistical computations and signal processing.
- Project size [?] and Difficulty
- ~350 hours (medium)
- Required skills
- Octave, C/C++; FORTRAN API knowledge
- Potential mentors
Project sizes
Since GSoC 2022 there exist two project sizes[1][2]:
- ~175 hours (~12 weeks, Jun 13 - Sept 12)
- ~350 hours (~22 weeks, Jun 13 - Nov 21)