Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 7 additions & 5 deletions .github/actions/generate-dataset/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# .github/actions/generate_dataset/action.yml
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/actions/generate-dataset/action.yml
# ────────────────────────────────────────────────────────
name: Generate Synthetic Dataset
description: Generate synthetic data and embeddings using Makefile targets

Expand All @@ -25,14 +29,12 @@ runs:
# 3️⃣ Generate the synthetic data
# ─────────────────────────────────────────────────────────────
- name: Generate synthetic data
working-directory: mk
shell: bash
run: make -f data.mk generate_synthetic_data
run: make generate_synthetic_data

# ─────────────────────────────────────────────────────────────
# 4️⃣ Generate the sentence embeddings
# ─────────────────────────────────────────────────────────────
- name: Generate embeddings
working-directory: mk
shell: bash
run: make -f embeddings.mk generate
run: make generate-embeddings
5 changes: 5 additions & 0 deletions .github/actions/install-llvm/action.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/actions/install-llvm/action.yml
# ────────────────────────────────────────────────────────
# .github/actions/install-llvm-toolchain/action.yml
name: Install LLVM Toolchain
description: Cross-platform LLVM installer for macOS, Ubuntu and Windows
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/benchmark.yaml
# ────────────────────────────────────────────────────────
name: Benchmarker
run-name: >-
${{ github.workflow }} on ${{ github.ref_name }} (#${{ github.run_number }})
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cpp.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/cpp.yaml
# ────────────────────────────────────────────────────────
name: CPP
run-name: >-
${{ github.workflow }} on ${{ github.ref_name }} (#${{ github.run_number }})
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/discord-notify.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/discord-notify.yml
# ────────────────────────────────────────────────────────
name: Discord Notify
run-name: >-
${{ github.workflow }} on ${{ github.ref_name }} (#${{ github.run_number }})
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/examples.yml
# ────────────────────────────────────────────────────────
name: Examples
run-name: >-
${{ github.workflow }} on ${{ github.ref_name }} (#${{ github.run_number }})
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/flatbuffers-ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/flatbuffers-ci.yml
# ────────────────────────────────────────────────────────
name: FlatBuffers CI
run-name: >-
${{ github.workflow }} on ${{ github.ref_name }} (#${{ github.run_number }})
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/fsst.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/fsst.yaml
# ────────────────────────────────────────────────────────
name: FSST
run-name: >-
${{ github.workflow }} on ${{ github.ref_name }} (#${{ github.run_number }})
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/galp.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/galp.yaml
# ────────────────────────────────────────────────────────
# .github/workflows/galp.yml

name: GALP
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/header-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/header-check.yml
# ────────────────────────────────────────────────────────
name: Header-check

run-name: >-
${{ github.workflow }} on ${{ github.ref_name }} (#${{ github.run_number }})
— ${{ github.event.pull_request.title || github.event.head_commit.message }}

on:
push:
pull_request:
branches: [ main, dev ]

jobs:
check-header:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Set up virtual environment
run: python -m venv .venv

- name: Check FastLanes file headers
run: make check-header
5 changes: 5 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/python.yml
# ────────────────────────────────────────────────────────
name: Python
run-name: >-
${{ github.workflow }} on ${{ github.ref_name }} (#${{ github.run_number }})
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/quick-fuzz.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/quick-fuzz.yml
# ────────────────────────────────────────────────────────
name: Quick-Fuzz CI
run-name: >-
${{ github.workflow }} on ${{ github.ref_name }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# .github/workflows/rust.yml
# ────────────────────────────────────────────────────────
# GitHub Actions workflow: Rust + C++ (FastLanes)
# Save as .github/workflows/rust.yml

Expand Down
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# CMakeLists.txt
# ────────────────────────────────────────────────────────
cmake_minimum_required(VERSION 3.22)

# Requirements : -------------------------------------------------------------------------------------------------------
Expand Down
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# root Makefile
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# Makefile
# ────────────────────────────────────────────────────────
include mk/preamble.mk
include mk/python.mk
include mk/format.mk
Expand All @@ -9,6 +13,7 @@ include mk/scripts.mk
include mk/embeddings.mk
include mk/flatbuffers.mk
include mk/quick_fuzz.mk
include mk/header_check.mk

.PHONY: all clean clang-format format-check rust-format-check format

Expand Down
5 changes: 5 additions & 0 deletions benchmark/accuracy_over_rowgroups/download_and_split.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ────────────────────────────────────────────────────────
# | FastLanes |
# ────────────────────────────────────────────────────────
# benchmark/accuracy_over_rowgroups/download_and_split.py
# ────────────────────────────────────────────────────────
#!/usr/bin/env python3

import urllib.request
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_accuracy_over_rowgroups.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_accuracy_over_rowgroups.cpp
// ────────────────────────────────────────────────────────
#include "benchmarker.hpp"

using namespace fastlanes; // NOLINT
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_compression_ratio.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_compression_ratio.cpp
// ────────────────────────────────────────────────────────
#include "benchmarker.hpp"

using namespace fastlanes; // NOLINT
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_compression_time.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_compression_time.cpp
// ────────────────────────────────────────────────────────
#include "benchmarker.hpp"

using namespace fastlanes; // NOLINT
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_decoding_ffor.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_decoding_ffor.cpp
// ────────────────────────────────────────────────────────
#include "cycle_counter.hpp"
#include "fallback_scalar_av_1024_uf1_unffor_helper.hpp"
#include "fls/ffor.hpp"
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_decompression_time.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_decompression_time.cpp
// ────────────────────────────────────────────────────────
#include "benchmarker.hpp"

using namespace fastlanes; // NOLINT
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_galp/bench_data_parallelize_patch.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_galp/bench_data_parallelize_patch.cpp
// ────────────────────────────────────────────────────────
// ─────────────────────────────────────────────────────────────────────────────
// patch_bench.cpp – unified benchmark driver
// ─────────────────────────────────────────────────────────────────────────────
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_random_access.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_random_access.cpp
// ────────────────────────────────────────────────────────
#include "benchmarker.hpp"

using namespace fastlanes; // NOLINT
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_sample_size.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_sample_size.cpp
// ────────────────────────────────────────────────────────
#include "benchmarker.hpp"

using namespace fastlanes; // NOLINT
Expand Down
5 changes: 5 additions & 0 deletions benchmark/bench_shared_schema.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ────────────────────────────────────────────────────────
// | FastLanes |
// ────────────────────────────────────────────────────────
// benchmark/bench_shared_schema.cpp
// ────────────────────────────────────────────────────────
#include "bench_shared_schema.hpp"
#include "benchmarker.hpp"

Expand Down
Loading
Loading