Changes between Version 8 and Version 9 of Other/Summer/2025/Power-efficient


Ignore:
Timestamp:
Jul 18, 2025, 1:37:48 AM (5 days ago)
Author:
extouchtriangle
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Other/Summer/2025/Power-efficient

    v8 v9  
    1515* Compared multi-sequence results for different framerates
    1616[https://docs.google.com/presentation/d/1pS4UTJG_3IOuvgf925F0IRsoTJ-9RARM1bfTpoevc8w/edit?slide=id.g370524e7985_0_669&pli=1#slide=id.g370524e7985_0_669 Presentation]
     17
     18== Other info ==
     19
     20* Scripts using the VRS library can be a pain to compile. You should use the following command:
     21```bash
     22    g++ FilterCopySamples.cpp -o FilterCopySamples \
     23        -L/usr/local/lib \
     24        -I/usr/local/include \
     25        # VRS Libraries (from most dependent to least, or internal dependencies last)
     26        -lvrs_utils \
     27        -lvrs_utils_converters \
     28        -lvrs_utils_cli \
     29        -lvrs_helpers \
     30        # Libraries that define functions used by the above, and also by vrslib
     31        -lvrslib \
     32        -lvrs_os \
     33        -lvrs_logging \
     34        -lvrs_utils_xxhash \
     35        # External Libraries (order generally less critical, but still good to put providers later)
     36        -llz4 \
     37        -lzstd \
     38        -lboost_filesystem \
     39        -lboost_system \
     40        -lxxhash \
     41        -lfmt \
     42        -lpthread
     43```
     44~totally did not take me 2 weeks plus lots of gemini to figure out~