Skip to content

harp-lab/slog-lang1

Folders and files

NameName
Last commit message
Last commit date
Jan 24, 2024
Sep 27, 2022
May 15, 2024
Jan 24, 2024
May 23, 2024
Oct 5, 2021
May 23, 2024
Jan 24, 2024
May 24, 2024
Jul 12, 2022
May 23, 2024
Jan 24, 2024
Jan 24, 2024
Aug 17, 2022
May 19, 2024
May 19, 2024
Oct 18, 2021
Jan 24, 2024
May 19, 2024
May 23, 2024
Jun 28, 2021
Jan 24, 2024
Oct 11, 2021
Jan 24, 2024
Jan 24, 2024
Nov 15, 2021
Apr 28, 2024

Repository files navigation

Slog v1: Data-Parallel Deductive Programming

Slog is a language, compiler, and runtime system for implementing data-parallel deductive programming.

The best way to understand Slog is to read our preprint.

Components

  • compiler/ -- Compiler from Slog source code to a parallel RA plan
  • backend/ -- MPI-based parallel relational algebra plan (RA) runtime
  • runslog -- Script to build and run slog program with given input data

A simple example

Here's how you do Transitive Closure in Slog

[(path x y) <-- (edge x y)]
[(path x z) <-- (edge x y) (path y z)]

The Following guide can help you quickly get started with Slog:

Getting Started

The following video (click the image below) demonstrates the first 2-3 articles below: setting up slog, running transitive closure, and showing the first example from the tutorial article.

Setting-up and running Slog examples

If you have issues or find any mistakes, please raise an issue.