Conference Agenda

Wednesday, July 27, 2022

12:30 UTC

Automatic Differentiation for Quantum Electron Structure

07/27/2022, 12:30 PM1:00 PM UTC
Purple

DFTK.jl is a framework for the quantum-chemical simulation of materials using Density Functional Theory. Many relevant physical properties of materials, such as interatomic forces, stresses or polarizability, depend on the derivatives of quantities of interest with respect to input data. To perform such computations efficiently Automatic Differentiation has been implemented in DFTK using both forward and backward modes of AD.

12:30 UTC

Julia to the NEC SX-Aurora Tsubasa Vector Engine

07/27/2022, 12:30 PM1:00 PM UTC
Blue

The package VectorEngine.jl enables the use of the SX-Aurora Tsubasa Vector Engine (VE) as an accelerator in hybrid Julia programs. It builds on GPUCompiler.jl leveraging the VEDA API as well as the LLVM-VE compiler and the Region Vectorizer. Even though the VE is very different from GPUs, using only few cores and arithmetic units with very long vector length, the package enables programmers to use it in a very similar way, simplifying the porting of Julia applications.

12:30 UTC

UnitJuMP: Automatic unit handling in JuMP

07/27/2022, 12:30 PM12:40 PM UTC
JuMP

This talk will present the package UnitJuMP that allows the user to include units when modelling optimization problems in JuMP. Both variables and constraints can have specified units, as well as parameters involved in objective and constraints. If different units are combined, functionality in Unitful is used to check for compatibility and perform automatic conversions.

12:30 UTC

Simulating neural physiology & networks in Julia

07/27/2022, 12:30 PM2:00 PM UTC
BoF

Could Julia be uniquely well-suited for rapidly developing new approaches to simulate the brain ? What if neuroscientists could use a composable set of tools to craft models of ion channels, compartmentalized neuronal morphology, networks of LIF or conductance-based neurons, reinforcement learning, and everything in-between?

Join the discussion on the bof-voice channel in discord.

12:30 UTC

`do block` considered harmless

07/27/2022, 12:30 PM12:40 PM UTC
Green

Is life possible without for-loops? This talk reviews some syntactic constructs available in Julia, especially the do-block, and relates them to programming language theory concepts.

12:30 UTC

From Mesh Generation to Adaptive Simulation: A Journey in Julia

07/27/2022, 12:30 PM1:00 PM UTC
Red

We present a Julia toolchain for the adaptive simulation of hyperbolic PDEs such as flow equations on complex domains. It begins with HOHQMesh.jl to create a curved, unstructured mesh. This mesh is then used in Trixi.jl, a numerical simulation framework for conservation laws. We visualize the results using Julia’s plotting packages. We highlight select features in Trixi.jl, like adaptive mesh refinement (AMR) or shock capturing, useful for practical applications with complex transient behavior.

12:40 UTC

Teaching with Julia (my experience)

07/27/2022, 12:40 PM12:50 PM UTC
Green

I am tenure at the University and I teach several courses of Computer Science. In this talk of 10 minutes I will teach how I will my use of Julia as a useful resource for teaching. In this talk I will introduce how I have used Pluto/PlutoSliderServer to explain concept and to allow students to check some implementations. Also, I show an online web for creating easily online quiz for Moodle. Finally, I have used it to prototype some algorithms that later the students should implement.

12:40 UTC

SparseVariables - Efficient sparse modelling with JuMP

07/27/2022, 12:40 PM12:50 PM UTC
JuMP

Industry scale optimization problems are often large and sparse, and problem construction time can rival solution time. The default containers and macros in JuMP present some challenges for this class of problems, in particular some performance gotchas.

We present SparseVariables.jl for simple sparse modelling, and demonstrate performance and conciseness with a supply chain optimization example, benchmarking both problem construction time and LOC for multiple modelling approaches.

12:50 UTC

JuMP ToQUBO Automatic Reformulation

07/27/2022, 12:50 PM1:00 PM UTC
JuMP

We present ToQUBO.jl, a Julia package to reformulate general optimization problems into QUBO instances. This tool aims to convert JuMP problems for straightforward application in physics and physics-inspired solution methods whose normal form is equivalent to QUBO. It automatically maps between source and target models, providing a smooth JuMP modeling experience. We also present a simple interface to connect various annealers and samplers as QUBO solvers bundled in another package, Anneal.jl.

12:50 UTC

Simulation of atmospheric turbulence with MicroHH.jl

07/27/2022, 12:50 PM1:00 PM UTC
Green

Turbulence in the atmosphere is often studied using 3D simulations as a virtual laboratory. Most experiments require code modification by users, but this is hard, because most codes are written in low-level languages as Fortran and C++. MicroHH.jl, a Julia port of the dynamical core of MicroHH, has been designed to solve this problem. It is built on MPI.jl, LoopVectorization.jl, CUDA.jl, and HDF5.jl for the IO. Interaction with running simulations is made possible via user scripts.

13:00 UTC

CUPofTEA, versioned analysis and visualization of land science

07/27/2022, 1:00 PM1:30 PM UTC
Red

We present a GitHub organization, CUPofTEAproject, hosting a Franklin.jl website, cupoftea.earth, and a suite of Julia packages. The organization goal is to host versioned analysis and web interactive visualization (using WGLMakie.jl) of science studies about exchanges between terrestrial ecosystems and the atmosphere.

13:00 UTC

A multi-precision algorithm for convex quadratic optimization

07/27/2022, 1:00 PM1:30 PM UTC
JuMP

In this talk, we describe a Julia implementation of RipQP, a regularized interior-point method for convex quadratic optimization. RipQP is able to solve problems in several floating-point formats, and can also start in a lower precision as a form of warm-start. The algorithm uses sparse factorizations or Krylov methods from the Julia package Krylov.jl. We present an easy way to use RipQP to solve problems modeled with QuadraticModels.jl and LLSModels.jl.

13:00 UTC

Fast Forward and Reverse-Mode Differentiation via Enzyme.jl

07/27/2022, 1:00 PM1:30 PM UTC
Purple

Enzyme is a new LLVM-based differentiation framework capable of creating fast derivatives in a variety of languages. In this talk we will showcase improvements in Enzyme.jl, the Julia-language bindings for Enzyme that enable us to differentiate through parallelism (Julia tasks, MPI.jl, etc), mutable memory, JIT-constructs, all while maintaining performance. Moreover we will also showcase Enzyme's new forward mode capabilities in addition to its existing reverse-mode features.

13:00 UTC

ProtoSyn.jl: a package for molecular manipulation and simulation

07/27/2022, 1:00 PM1:10 PM UTC
Green

ProtoSyn.jl is an open-source alternative to molecular manipulation and simulations software, built with a modular architecture and offering a clean canvas where new protocols and models can be tested and benchmarked. By delivering good documentation, ProtoSyn.jl aims to lower the entry barrier to inexperienced scientists and allow a “plug-and-play” experience when implementing modifications. Learn more on the project’s GitHub page: https://github.com/sergio-santos-group/ProtoSyn.jl

13:00 UTC

Teaching GPU computing, experiences from our Master-level course

07/27/2022, 1:00 PM1:30 PM UTC
Blue

In the Fall Semester 2021 at ETH Zurich, we designed and taught a new course: Solving PDEs in parallel on GPUs with Julia. We present technical and teaching experiences we gained: we look at our tech-stack CUDA.jl, ParallelStencils.jl and ImplictGlobalGrid.jl for GPU-computing; and Franklin.jl, Literate.jl, IJulia.jl/Jupyter for web, slides, and exercises. We look into the crash-course in Julia, teaching software-engineering (git, CI) and project-based student evaluations.

13:10 UTC

PDDL.jl: A fast and flexible interface for automated planning

07/27/2022, 1:10 PM1:20 PM UTC
Green

The Planning Domain Definition Language (PDDL) is a formal specification language for symbolic planning problems and domains that is widely used by the AI planning community. This talk presents PDDL.jl, a fast and flexible interface for planning over PDDL domains. It aims to be what PyTorch is to deep learning, or what PPLs are to Bayesian inference: A general high-performance platform for contemporary AI applications and research programs that leverage automated symbolic planning.

13:20 UTC

Real-Time, I/O, and Multitasking: Julia for Medical Imaging

07/27/2022, 1:20 PM1:30 PM UTC
Green

In this talk, we show how to use Julia to build the system software for a medical imaging device. Such a device is a distributed system that has to coordinate the handling of real-time signals and asynchronous tasks. The talk will highlight the key parts and design patterns of our software stack. We show how we used a variety of Julia features to implement the control logic of the entire imaging device and the coordination and communication with the large number of sub-devices it controls.

13:30 UTC

Interior-point conic optimization with Clarabel.jl

07/27/2022, 1:30 PM2:00 PM UTC
JuMP

The talk will introduce Clarabel.jl, a conic convex optimization solver in pure Julia. Clarabel.jl uses an interior point technique with a novel homogeneous embedding and can solve LPs, QPs, SOCPs, SDPs or exponential cone programs. The talk will highlight the solver's performance advantages relative to competing solvers, discuss algorithmic and software design ideas drawn from existing solvers, and highlight extensibility features leveraging Julia's multiple dispatch system.

13:30 UTC

Build an extensible gallery of examples

07/27/2022, 1:30 PM1:40 PM UTC
Green

Examples are an essential part of the package documentation. In this talk, I'll introduce DemoCards.jl as a plugin package for Documenter to manage your demo files. I'll explain its design and show how it is used to build the demos in JuliaImages and JuliaPlots. Package authors and document writers are potential users of this package.

13:40 UTC

GPU4GEO - Frontier GPU multi-physics solvers in Julia

07/27/2022, 1:40 PM1:50 PM UTC
Blue

The accelerating outflow of ice in Antarctica or Greenland due to a warming climate or the geodynamic processes shaping the Earth share common computational challenges: extreme-scale high-performance computing (HPC) which requires the next-generation of numerical models, parallel solvers and supercomputers. We here present a fresh approach to modern HPC and share our experience running Julia on thousands of graphical processing units (GPUs).

14:30 UTC

Comrade: High-Performance Black Hole Imaging

07/27/2022, 2:30 PM2:40 PM UTC
Green

In 2019 the Event Horizon Telescope (EHT) Collaboration produced the first image of a black hole. This talk details how Julia has been an essential tool for EHT black hole imaging and the advancement of black hole science. I will demonstrate how Julia’s features such as multiple dispatch, differentiable programming, and composability have enabled orders of magnitude performance improvement, moving black hole imaging from clusters to a single laptop.

14:30 UTC

JunctionTrees: Bayesian inference in discrete graphical models

07/27/2022, 2:30 PM2:40 PM UTC
Purple

JunctionTrees.jl implements the junction tree algorithm: an efficient method to perform Bayesian inference in discrete probabilistic graphical models. It exploits Julia's metaprogramming capabilities to separate the algorithm into a compilation and a runtime phase. This opens a wide range of optimization possibilities in the compilation stage. The non-optimized runtime performance of JunctionTrees.jl is similar to those of analog C++ libraries such as libdai and Merlin.

14:30 UTC

JuMP 1.0: What you need to know

07/27/2022, 2:30 PM3:00 PM UTC
JuMP

JuMP 1.0 was released in March 2022. I'll present the state of JuMP today, how we got here, what the JuMP community should know about the 1.0 release, and what's next on the roadmap.

14:30 UTC

Using Hawkes Processes in Julia: Finance and More!

07/27/2022, 2:30 PM2:40 PM UTC
Blue

Using HawkesProcesses.jl I'll introduce the theory behind Hawkes process and show how it can be used across many different applications. Hawkes processes in Julia benefit from the speed of the language and composability of the different libraries, as you can easily extend the Hawkes process using other packages without too much difficulty. Plus, by using Pluto notebooks I can build simple interactions that demonstrate the underlying mechanics of the Hawkes process.

14:30 UTC

ModalDecisionTrees: Decision Trees, meet Modal Logics

07/27/2022, 2:30 PM2:40 PM UTC
Red

ModalDecisionTrees.jl offers a set of symbolic machine learning algorithms that extend classical decision tree learning algorithms, and are able to natively handle time series and image data. Modal Decision Trees leverage modal logics to perform a primitive-but-powerful form of entity-relation reasoning; this allows them to capture temporal and spatial patterns, and makes them suitable to natively deal (= no need for feature extraction) with data such as multivariate time-series and images.

14:30 UTC

Discussing Gender Diversity in the Julia Community

07/27/2022, 2:30 PM4:00 PM UTC
BoF

Julia Gender Inclusive is an initiative that supports gender diversity in the Julia community. Over the last year, we have worked toward doing so through meetups and workshops for community building and education. In this Birds-of-Feather session, we hope to discuss current and future initiatives with other people with underrepresented genders, as well as supportive allies.

Join the discussion on the bof-voice channel

14:40 UTC

Automated Finite Elements: a comparison between Julia and C++

07/27/2022, 2:40 PM2:50 PM UTC
Purple

With Gridap, Julia has a Finite Element package that allows writing expressions that closely mimic the mathematical notation of the weak form of an equation and automate the assembly of the linear system from there. Rather than using macros, the equations are interpreted as regular Julia expressions. This approach is similar to what has been done in C++, e.g. in the Coolfluid 3 CFD code. In this talk, both methods will be compared, showing how Julia really is "C++ done right" for this use case.

14:40 UTC

Dithering in Julia with DitherPunk.jl

07/27/2022, 2:40 PM2:50 PM UTC
Blue

Dithering algorithms are a group of color quantization techniques that create the illusion of continuous color in images with small color palettes by adding high-frequency noise or patterns. Traditionally used in printing, they are now mostly used for stylistic purposes.

DitherPunk.jl implements a wide variety of fast and extensible dithering algorithms. Using its example, I will demonstrate how packages for creative coding can be built on top of the JuliaImages ecosystem.

14:40 UTC

Reaction rates and phase diagrams in ElectrochemicalKinetics.jl

07/27/2022, 2:40 PM2:50 PM UTC
Green

I will introduce ElectrochemicalKinetics.jl, a package that implements a variety of models for electrochemical reaction rates (such as Butler-Volmer or Marcus-Hush-Chidsey). It can also fit model parameters and construct nonequilibrium phase diagrams. While the package has already been of great use in electrochemical research applications, I will focus more on the design choices as well as the challenges that have come up in implementing automatic differentiation support.

14:40 UTC

Multivariate polynomials in Julia

07/27/2022, 2:40 PM2:50 PM UTC
Red

Depending on the applications, the requirement for a multivariate polynomial library may be efficient computation of product, division, substitution, evaluation, gcd or even Gröbner bases. It is well understood that the concrete representation to use for these polynomials depends on whether they are sparse or not. In this talk, we show that in Julia, the choice of representation also depends on whether to specialize the compilation on the variables.

14:50 UTC

RVSpectML: Precision Velocities from Spectroscopic Time Series

07/27/2022, 2:50 PM3:00 PM UTC
Green

Astronomers have detected nearly a thousand exoplanets by precisely charting the radial velocity (RV) wobble of their host stars. The RVSpectML family of packages is a new, open-source, modular and performant pipeline for measuring radial velocities and stellar variability indicators from spectroscopic time-series. This talk aims to give potential users and/or developers an overview of the component packages and their status.

14:50 UTC

Distributed AutoML Pipeline Search in PC/RasPi K8s Cluster

07/27/2022, 2:50 PM3:00 PM UTC
Purple

In this lightning talk, I will present an example workflow in leveraging the Kubernetes cluster of RaspberryPis to perform parallel search in finding the best AutoML pipeline in a given classification task. While many applications of RasPis are targeted for IOT usage, a K8s cluster of RasPis running Julia can be targeted to solve more complex problems and I will provide examples of the cluster performance running AutoMLPipeline applications.

14:50 UTC

FdeSolver.jl: Solving fractional differential equations

07/27/2022, 2:50 PM3:00 PM UTC
Blue

FdeSolver Julia package solves fractional differential equations in the sense of Caputo, suitable for nonlinear and stiff ordinary differential systems. It has been used for describing memory effects in microbial community dynamics and complex systems. With some practical examples, I will present why (and how) developing such a computational package in open source programming is important (and useful).

14:50 UTC

PHCpack.jl: Solving polynomial systems via homotopy continuation

07/27/2022, 2:50 PM3:00 PM UTC
Red

PHCpack is a software package for solving polynomial systems via homotopy continuation methods. Our interface exports the functionality of PHCpack either via the executable or the shared object file, via its C interface. The software is free and open source and we have a cloud server that hosts the application at phcpack.org. Our talk will also explore a specific application area in the design of mechanisms.

15:00 UTC

A user’s perspective on using JuMP in an academic project

07/27/2022, 3:00 PM3:30 PM UTC
JuMP

The Risk-Aware Market Clearing (RAMC) project investigates the quantification and management of risk in power systems, thereby bridging machine learning, optimization and risk analysis. This talk will discuss the team's experience --from a user perspective-- on using Julia and JuMP within an academic project and a multi-disciplinary team. This will include the motivation for using these tools, as well as hurdles encountered along the way, and practical experience on industrial-size systems.

15:00 UTC

A Tax-Benefit model for Scotland in Julia

07/27/2022, 3:00 PM3:10 PM UTC
Red

This talk discusses ScotBen, a microsimulation tax-benefit model for Scotland written in Julia. Scotben lets you analyse how changes to the tax system change revenues, inequality and poverty.

15:00 UTC

Comonicon, a full stack solution for building CLI applications

07/27/2022, 3:00 PM3:10 PM UTC
Purple

In this talk, I will introduce Comonicon. Comonicon is a CLI generator designed for Julia, unlike other CLI generators such as Fire, ArgParse, and so on, Comonicon does not only parse command-line arguments but also provide a full solution for building CLI application (via PackageCompiler), packing tarballs, generating shell auto-completion, CLI application installation, mitigating CLI latencies. I'll also talk about ideas arise from development about the future official Julia application.

15:00 UTC

State of JuliaGeo

07/27/2022, 3:00 PM3:10 PM UTC
Green

JuliaGeo is a community that contains several related Julia packages for manipulating, querying, and processing geospatial geometry data. We aim to provide a common interface between geospatial packages. In 2022 there has been a big push to have parity with the Python geospatial packages, such as rasterio and geopandas. In this 10 minute talk, we'd like to show these improvements---both in code and documentation---during a tour of the geospatial ecosystem.

15:10 UTC

Automated PDE Solving in Julia with MethodOfLines.jl

07/27/2022, 3:10 PM3:40 PM UTC
Blue

If you want to simulate something, sooner or later you’re going to come across partial differential equations. But solving PDEs is hard, right? It doesn’t have to be! In this talk we'll cut to the chase: how do I copy paste the textbook description of my PDE into Julia symbolic syntax and get a solution? MethodOfLines.jl is the answer, and in this talk we'll show you how to do it!

15:10 UTC

Towards Using Julia for Real-Time applications in ASML

07/27/2022, 3:10 PM3:40 PM UTC
Green

ASML is a 30.000+ employee company which is the world leader on photo-lithographic systems that are crucial for semiconductor manufacturing. During the last two years a community of Julia enthusiasts has been running pilot projects to assess opportunities offered by Julia for rapid development of early Proof-of-Concepts and, subsequent, rapid deployment in prototypes and, whether possible, actual products. Similar to other robotic systems, ASML lithography systems have hard real-time....

15:10 UTC

Bayesian Estimation of Macroeconomic Models in Julia

07/27/2022, 3:10 PM3:40 PM UTC
Red

Computational efficiency is vital when estimating macroeconomic models for use in policy analysis. We introduce the models contained within DSGE.jl and overview how to estimate them. We provide details on two estimation methods, adaptive Metropolis-Hastings and sequential Monte Carlo, and discuss how they can provide more efficiency during the estimation process.

15:10 UTC

Cycles and Julia Sets: Novel algorithms for Numerical Analysis

07/27/2022, 3:10 PM3:20 PM UTC
Purple

We present a new collection of algorithms dedicated to compute the basins of attraction of any complex rational map. This is a relevant matter in Holomorphic Dynamics, and also a way to visualize and study amazing fractal objects like Julia Sets. These algorithms solve many computational problems that often arise in Numerical Analysis, like overflows or mathematical indeterminations, and provide more information about the dynamics of the system than traditional algorithms generally do.

15:20 UTC

High-performance xPU Stencil Computations in Julia

07/27/2022, 3:20 PM3:30 PM UTC
Purple

We present an efficient approach for writing architecture-agnostic parallel high-performance stencil computations in Julia. Powerful metaprogramming, costless abstractions and multiple dispatch enable writing a single code that is usable for both productive prototyping on a single CPU and for production runs on GPU or CPU workstations or supercomputers. Performance similar to CUDA C is achievable, which is typically a large improvement over reachable performance with CUDA.jl Array programming.

15:30 UTC

Distributed Parallelization of xPU Stencil Computations in Julia

07/27/2022, 3:30 PM3:40 PM UTC
Purple

We present a straightforward approach for distributed parallelization of stencil-based Julia applications on a regular staggered grid using GPUs and CPUs. The approach allows to leverage remote direct memory access and was shown to enable close to ideal weak scaling of real-world applications on thousands of GPUs. The communication performed can be easily hidden behind computation.

15:30 UTC

COPT and its Julia interface

07/27/2022, 3:30 PM3:40 PM UTC
JuMP

COPT (Cardinal Optimizer) is a mathematical optimization solver for large-scale optimization problems. It includes high-performance solvers for LP, MIP, SOCP, convex QP, convex QCP and other mathematical programming problems. In this talk we will give an overview of COPT and introduce its Julia interface.

15:40 UTC

Building Julia proxy mini apps for HPC system evaluation

07/27/2022, 3:40 PM3:50 PM UTC
Purple

We will showcase our efforts building Julia proxy applications, or mini apps, targeting the Summit and Frontier supercomputers. We developed XSBench.jl to simulate on-node CPU and GPU scalability of a Monte Carlo computational kernel and, and RIOPA.jl for parallel input/output (I/O) strategies. We will share the lessons learned from Julia’s fresh approach for performance and productivity as a viable language, similar to Fortran, C and C++ for high-performance computing (HPC) systems.

15:40 UTC

A Data Integration Framework for Microbiome Research

07/27/2022, 3:40 PM3:50 PM UTC
Red

Standardized data objects can greatly support the collaborative development of new data science methods. In particular, commonly agreed data standards will provide improved efficiency and reliability in complex data integration tasks. We demonstrate the application of this framework in the context of microbiome research.

15:40 UTC

JuMP and HiGHS: the best open-source linear optimization solvers

07/27/2022, 3:40 PM3:50 PM UTC
JuMP

This talk will describe how the JuMP and HiGHS teams have worked together to deliver the best open-source linear optimization solvers to the Julia community, and present some high-profile use cases.

15:50 UTC

ASML Sponsored Talk

07/27/2022, 3:50 PM3:55 PM UTC
Purple

We make machines that make chips; the hearts of the devices that keep us informed, entertained and safe.

15:55 UTC

MetaLenz Sponsored Talk

07/27/2022, 3:55 PM4:00 PM UTC
Purple

Metalenz is commercializing metasurface technology and transforming optical sensing in consumer electronics and automotive markets.

16:30 UTC

Opening remarks

07/27/2022, 4:30 PM4:40 PM UTC
Green

Opening remarks

16:40 UTC

Keynote- Erin LeDell

07/27/2022, 4:40 PM5:25 PM UTC
Green

Keynote- Erin LeDell

17:25 UTC

Julia Computing Sponsored Talk

07/27/2022, 5:25 PM5:40 PM UTC
Green

Julia Computing's mission is to develop products that bring Julia's superpowers to its customers. Julia Computing's flagship product is JuliaHub, a secure, software-as-a-service platform for developing Julia programs, deploying them, and scaling to thousands of nodes.

17:40 UTC

AWS Sponsor Talk

07/27/2022, 5:40 PM5:50 PM UTC
Green

Amazon Web Services sponsor Talk

18:00 UTC

Poster session

07/27/2022, 6:00 PM7:30 PM UTC
BoF

The virtual poster session will take place in the designated area in Gather.town. See the full poster list on the JuliaCon website.

19:00 UTC

Quantum computing with ITensor and PastaQ

07/27/2022, 7:00 PM7:30 PM UTC
Purple

We introduce PastaQ.jl, a computational toolbox for simulating, designing, and benchmarking quantum hardware. PastaQ relies on a tensor network description of quantum processes, built on top of ITensors.jl, a leading library for efficient tensor network algorithms. Leveraging recent developments in tensor network differentiation in ITensor, PastaQ provides access to a broad range of computational tools to tackle a tasks routinely encountered when building quantum computers.

19:00 UTC

Automatic generation of C++ -- Julia bindings

07/27/2022, 7:00 PM7:30 PM UTC
Blue

Interporability of Julia with C++ is essential for the use of the Julia programming language in fields with a large legacy of code written in this language. We will show how the generation of a Julia interface to a C++ library can be automatized using CxxWrap.jl and a tool that generates the required C++ glue code. The concept is demonstrated with a prototype called WrapIt!, https://www.github.com/grasph/wrapit, based on clang and which is already well advanced.

19:00 UTC

Pajarito's MathOptInterface Makeover

07/27/2022, 7:00 PM7:30 PM UTC
JuMP

Pajarito is an outer approximation solver for mixed integer conic problems. We have redesigned and rewritten Pajarito in version 0.8 to support MathOptInterface (finally!). Pajarito now has a generic cone interface that allows adding support for new convex cones through a small list of oracles. PajaritoExtras.jl extends Pajarito by defining several cones supported by the continuous conic solver Hypatia. We illustrate with applied examples, including mixed integer polynomial problems.

19:10 UTC

Optimization of bike manufacturing and distribution (use-case)

07/27/2022, 7:10 PM7:20 PM UTC
Green

This is a use-case scenario of using Julia for planning and optimization of production in one of the largest bicycle manufacturing plants in Europe. The optimization model has been implemented utilizing JuMP and custom made heuristics. The Julia solution has increased profitability of the manufacturing plant over 10% (compared to the previous approach) and the optimal part allocation made it possible to increase the bike production volume by 25%.

19:20 UTC

TintiNet.jl: a language model for protein 1D property estimation

07/27/2022, 7:20 PM7:30 PM UTC
Green

AI has inaugurated a new era in Bioinformatics, to the point where contemporary language models can extract structural information from processing single protein sequences. Contributing to this field, we built TintiNet.jl, a 100% open-source, open-data and Julia-based portable language model to predict 1D protein structural properties. Our model achieves top performance - computational and predictive -, when compared to other modern algorithms, with only a fraction of the parameter count.

19:30 UTC

Extending PyJL to Translate Python Libraries to Julia

07/27/2022, 7:30 PM8:00 PM UTC
Blue

Many new high-level programming languages have emerged in recent years. Julia is one of these languages, that offers the speed of C, the macro capabilities of Lisp, and the user-friendliness of Python. However, its library set is still reduced when compared to languages, such as Python. We propose extending PyJL, an open source transpilation tool, to speedup the conversion of libraries to Julia.

19:30 UTC

Building workflows for materials modeling on HPC Systems

07/27/2022, 7:30 PM8:00 PM UTC
Red

Materials computations, especially of the ab initio kind, are intrinsically complex. These difficulties have inspired us to develop an extensible, lightweight, high-level workflow framework, Express.jl, to automate long and extensive sequences of the ab initio calculations. In this talk, we would like to share some experiences that we gained in building a software framework and multifunctional scientific tools with Julia's versatility.

19:30 UTC

A matrix-free fix-propagate-and-project heuristic for MILPs

07/27/2022, 7:30 PM8:00 PM UTC
JuMP

We present Scylla, a primal heuristic for mixed-integer optimization. It uses matrix-free approximate LP solving with specialized termination criteria and parallelized fix-and-propagate procedures blended with feasibility pump-like objective updates. Besides the presentation of the method and results, we will go over lessons learned on experimentation and implementation tricks including overhead reduction, asynchronous programming, and interfacing with natively-compiled libraries.

19:30 UTC

QuantumCircuitOpt for Provably Optimal Quantum Circuit Design

07/27/2022, 7:30 PM8:00 PM UTC
Purple

A key aspect for operating near-term intermediate-scale quantum (NISQ) computers is to develop compact circuits to implement quantum algorithms, given the hardware's architectural constraints. Efficient formulations and algorithms to solve such hard optimization problems with optimality guarantees is a key in designing such NISQ devices. This talk provides an overview of QuantumCircuitOpt.jl, a software package developed at LANL for provably optimal synthesis of architecture for Quantum circuits

19:30 UTC

Julia Computing Sponsored Forum

07/27/2022, 7:30 PM8:15 PM UTC
Sponsored forums

Join the sponsored forum here.

19:30 UTC

PtyLab.jl - Ptychography Reconstruction

07/27/2022, 7:30 PM7:40 PM UTC
Green

Conventional Ptychography is a lensless imaging technique which captures a sequence of light diffraction patterns to solve the optical phase problem. The resulting datasets are large and can typically not directly be solved. Instead, iterative reconstruction algorithms with low runtime memory footprint are employed. Here we present PtyLab.jl, a software for ptychographic data analysis and demonstrate how a functional programming style in Julia allows for performant iterative algorithms.

19:40 UTC

Cropbox.jl: A Declarative Crop Modeling Framework

07/27/2022, 7:40 PM7:50 PM UTC
Green

Cropbox.jl provides a domain specific language for developing crop models.

19:50 UTC

GapTrain: a faster and automated way to generate GA potentials

07/27/2022, 7:50 PM8:00 PM UTC
Green

Chemical predictions have gained ground in the last decade as a way to automate the streamlining of chemical reactivity of multiple substrates. This procedure requires the modeling of interatomic potentials, which can be done by fitting these potentials to data obtained at the quantum-mechanical level. Therefore, the aim of this work is to propose GapTrain.jl, a fast, automatic and broad model to develop the Gaussian approximation potential based on a hundred or thousand data.

20:00 UTC

Using Julia for Observational Health Research

07/27/2022, 8:00 PM8:10 PM UTC
Green

Observational health research is a domain of health informatics centered around the use of what is known as "Real World Data". This data comes in several different modalities, standards, and levels of quality. Through efforts done in JuliaHealth, JuliaInterop, and associated communities, the ability to work with this data is now fully realized. Through this talk, viewers will see how an observational health study can be conducted with Julia and how similar tools can be adapted to their research.

20:00 UTC

Modeling a Crash Simulation System with ModelingToolkit.jl

07/27/2022, 8:00 PM8:30 PM UTC
Red

Previously traditional modeling tools were used to provide the acausal modeling framework which could be statically compiled and integrated with our distributed software. But with this comes the dual language problem and friction with model research and development. With ModelingToolkit.jl the tools needed to transition from traditional modeling frameworks are now available. This talk will cover our approach and success in re-writing our Hydraulic Crash Simulation system model in pure Julia.

20:00 UTC

Julia in VS Code - What's New

07/27/2022, 8:00 PM8:30 PM UTC
Blue

We will highlight new features in the Julia VS Code extension that shipped in the last year and give a preview of some new work. The new features from last year that we will highlight are: 1) a new profiler UI, 2) a new table viewer UI, 3) a revamped plot gallery, 4) cloud indexing infrastructure, and 5) integration of JuliaFormatter. We will also present some brand-new features, in particular an entirely new test explorer UI integration.

20:00 UTC

Verifying Inverse Model Neural Networks Using JuMP

07/27/2022, 8:00 PM8:10 PM UTC
JuMP

Deep learning using neural networks is increasingly popular, but neural networks come with few built-in guarantees of correctness. This talk will discuss how I use JuMP to compute verified upper bounds on the error of a neural network trained as an inverse model. Using JuMP together with Distributed.jl allows me to run a large number of verification queries in parallel with minimal time spent on non-research development.

20:00 UTC

Simulating and Visualizing Quantum Annealing in Julia

07/27/2022, 8:00 PM8:30 PM UTC
Purple

QuantumAnnealing.jl provides a toolkit for performing simulations of Adiabatic Quantum Computers on classical hardware. The package includes functionality for rapid simulation of the Schrodinger evolution of the system, processing annealing schedules used by real world annealing hardware, implementing custom annealing schedules, and more.

20:10 UTC

Complex number support in JuMP

07/27/2022, 8:10 PM8:20 PM UTC
JuMP

Complex numbers appear in a variety of optimization problems such as AC optimal power flow problems (AC-OPF) and quantum information optimization. This talk presents the integration of complex numbers in JuMP. We first describe how to create complex variables and constraints with complex coefficients in JuMP. Then, we show how this addition makes use of the extensible design of MathOptInterface and JuMP. We illustrate this with examples from PowerModels.jl and SumOfSquares.jl.

20:10 UTC

Finding Fast Radio Bursts, Faster

07/27/2022, 8:10 PM8:20 PM UTC
Green

In radio astronomy, "Fast Radio Bursts" are short, high-energy signals of unknown origin. So far, relatively few have been discovered as many telescopes weren't designed to observe radio transients. Additionally, searching real-time spectral data is an expensive task, for which there are only a few aging packages to automate. In this talk, we'll look at using CUDA.jl and the Julia ecosystem to accelerate the hunt for these mysterious sources and the integration into an FRB detection pipeline.

20:20 UTC

Using contexts and capabilities to provide privacy protection

07/27/2022, 8:20 PM8:30 PM UTC
Green

Privacy is an important aspect of the internet today. Providing privacy protection, however, is a difficult problem especially when you work with many data processes and systems. To solve this problem holistically, privacy needs to be a built-in feature, not an after-thought. I will talk about how to solve this problem with the idea of context and capabilities.

20:30 UTC

GatherTown -- Social break

07/27/2022, 8:30 PM9:30 PM UTC
Green

Join us on Gather.town for a social hour.

Platinum sponsors

Julia ComputingRelational AIJulius Technology

Gold sponsors

IntelAWS

Silver sponsors

Invenia LabsBeacon BiosignalsMetalenzASMLG-ResearchConningPumas AIQuEra Computing Inc.Jeffrey Sarnoff

Media partners

Packt PublicationGather TownVercel

Community partners

Data UmbrellaWiMLDS

Fiscal Sponsor

NumFOCUS