Hello World 2!
Hello World!
Hello World
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ alias rr="taskset -c 0-7 /home/user/Downloads/rr-5.9.0-Linux-x86_64/bin/rr" | |
$ rr record -n -- ../jimsh runall.tcl | |
rr: Saving execution to trace directory `/home/user/.local/share/rr/jimsh-5'. | |
# -- program specific logs omitted -- # | |
$ rr replay | |
GNU gdb (GDB) 16.2 | |
Copyright (C) 2024 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
This is free software: you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"output": { | |
"blocklist": [], | |
"compressor#0": { | |
"attack": 20.0, | |
"boost-amount": 6.0, | |
"boost-threshold": -72.0, | |
"bypass": true, | |
"dry": -100.0, | |
"hpf-frequency": 10.0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Preamp: 0 db | |
Filter 1: ON PK Fc 545 Hz Gain -9.8 dB Q 3.541 | |
Filter 2: ON PK Fc 729 Hz Gain -3 dB Q 3.32 | |
Filter 3: ON PK Fc 1290 Hz Gain -6.4 dB Q 3.25 | |
Filter 4: ON PK Fc 2495 Hz Gain -4.1 dB Q 2.509 | |
Filter 5: ON PK Fc 5600 Hz Gain -3 dB Q 2.414 | |
Filter 6: ON HSC Fc 6000 Hz Gain 4.57 dB Q 0.7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "api-test" | |
version = "0.1.0" | |
edition = "2021" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
allocator-api2 = "0.2.15" | |
buddy_system_allocator = "0.9.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{sync::mpsc, thread}; | |
use ghost_cell::{GhostBorrow, GhostCell, GhostToken}; | |
fn main() { | |
let buffer_size = 2; | |
let (to_engine, from_main) = mpsc::channel::<Vec<f32>>(); | |
let (to_main, from_engine) = mpsc::channel::<Vec<f32>>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14:20:02.541 | WARN | main_thread | MasterScore | rebuildExcerptsMidiMapping: rebuildExcerptsMidiMapping: no part in master score is linked with Flute 2 | |
14:20:02.541 | WARN | main_thread | MasterScore | rebuildExcerptsMidiMapping: rebuildExcerptsMidiMapping: no part in master score is linked with Clarinet in B♭ 1 | |
14:20:02.544 | DEBUG | main_thread | Segment | checkElement: add(TimeSig): there is already a TimeSig at track 12 tick 0 | |
14:20:02.545 | DEBUG | main_thread | Segment | checkElement: add(Chord): there is already a Rest at track 12 tick 0 | |
14:20:02.547 | DEBUG | main_thread | Segment | checkElement: add(Chord): there is already a Rest at track 12 tick 1920 | |
14:20:02.547 | DEBUG | main_thread | Segment | checkElement: add(Chord): there is already a Rest at track 12 tick 3840 | |
14:20:02.547 | DEBUG | main_thread | Segment | checkElement: add(Chord): there is already a Rest at track 12 tick 5760 | |
14:20:02.547 | DEBUG | main_thread | Segment | checkElement: add(Chord): there is already a Res |
NewerOlder