Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
649bfdd
(chore) removed plotting and variable float compilation (feat) added …
jspaezp Jun 24, 2024
fc1c485
(wip,broken) migration to sqlx and alternative splitting detection
jspaezp Jun 24, 2024
c89cc6c
(wip) changed frame breaking order and work towards new denoising logic
jspaezp Jun 24, 2024
31e29c1
further implementation of delayed denseframe conversion and early spl…
jspaezp Jul 6, 2024
b70c05d
added unit testing to tdf reading
jspaezp Jul 6, 2024
896865e
updated gh actions to build test data
jspaezp Jul 6, 2024
f4078a2
(wip) clippy suggestions
jspaezp Jul 6, 2024
d7f37ce
(broken,wip) Almost complete migration of dbscan to runner struct
jspaezp Jul 7, 2024
0cc1b91
(refactor) Complete migration of dbscan to runner struct
jspaezp Jul 7, 2024
3106cce
(chore) change in fmt config
jspaezp Jul 8, 2024
b7d97b2
(wip) refactoring inner loop of dbscan (and formatting)
jspaezp Jul 8, 2024
8be203c
(feature) Generic implem,entation of intense at and as ndpoints at index
jspaezp Jul 8, 2024
1403d90
(chore) removed dead code and documented better util
jspaezp Jul 8, 2024
42854f0
(wip) implemented tests and intensity+point generics for frame slice
jspaezp Jul 13, 2024
4427100
(wip) migration from slices of elements to indexable traits
jspaezp Jul 15, 2024
5daf5f3
(finished) migration from slices of elements to indexable traits
jspaezp Jul 16, 2024
fbd19a4
(wip) parcial implementation of the actual frame slice window denoising
jspaezp Jul 19, 2024
1cd0600
(wip) progress towards full implementation of sliding window denoising
jspaezp Jul 19, 2024
c9b8993
added debug serialization and changed indexing strategy
jspaezp Jul 21, 2024
ec2f3c5
(feat) changed indexing instrategy for traces and added less paralel …
jspaezp Jul 22, 2024
f1d9308
(feature) new indexing on traces and expanded how re-assignment of ce…
jspaezp Jul 25, 2024
67db55c
(wip,chore) clippy and deny update
jspaezp Jul 25, 2024
eab0fe2
(chore) moved to nightly cargo fmt
jspaezp Jul 25, 2024
6bf5b65
(chore) clippy nightly
jspaezp Jul 25, 2024
0b581ec
(wip) updates timsrust to v0.4.1 (#9)
jspaezp Sep 26, 2024
cc84dab
(chore) version bump
jspaezp Sep 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ jobs:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Build Test Data
run: cd tests/data && bash build.bash
- name: Run tests
run: cargo test --verbose
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
/tmp
/run_1k
/benchmark
/debug_jsons
traces_debug.csv
pseudoscans_debug.json

12 changes: 12 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/EmbarkStudios/cargo-deny
rev: 0.14.16 # choose your preferred tag
hooks:
- id: cargo-deny
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: local
hooks:
- id: rustfmt
name: rustfmt
description: Check if all files follow the rustfmt style
entry: cargo +nightly fmt --all -- --check --color always
language: system
pass_filenames: false
Loading
Loading