furkanercan commited on
Commit
7e4ee45
·
verified ·
1 Parent(s): 309fcf8

Upload 34 files

Browse files

First commit - contains polar, TBCC encoder, and some 5G

Files changed (35) hide show
  1. .gitattributes +3 -0
  2. README.md +52 -3
  3. coding/polar_gmat_64x128/Gmat.csv +64 -0
  4. coding/polar_gmat_64x128/README.md +27 -0
  5. coding/polar_gmat_64x128/encoded_data.csv +0 -0
  6. coding/polar_gmat_64x128/uncoded_data.csv +0 -0
  7. coding/polar_nr5g_wrapper/README.md +32 -0
  8. coding/polar_nr5g_wrapper/polar_nr5g_test_metadata/automeris_pdcch_1.tar +3 -0
  9. coding/polar_nr5g_wrapper/polar_nr5g_test_metadata/automeris_pdcch_2.tar +3 -0
  10. coding/polar_nr5g_wrapper/polar_nr5g_test_metadata/automeris_pucch_1.tar +3 -0
  11. coding/polar_nr5g_wrapper/polar_nr5g_test_metadata/automeris_pucch_2.tar +3 -0
  12. coding/polar_nr5g_wrapper/polar_nr5g_wrapper_test_data_valerio.csv +414 -0
  13. rx/README.md +1 -0
  14. rx/dec_polar_sc/README.md +48 -0
  15. rx/dec_polar_sc/sc_n1024_k128_Q0.in +0 -0
  16. rx/dec_polar_sc/sc_n1024_k128_Q0.out +0 -0
  17. rx/dec_polar_sc/sc_n1024_k512_Q0.in +0 -0
  18. rx/dec_polar_sc/sc_n1024_k512_Q0.out +0 -0
  19. rx/dec_polar_sc/sc_n1024_k864_Q0.in +0 -0
  20. rx/dec_polar_sc/sc_n1024_k864_Q0.out +0 -0
  21. rx/dec_polar_sc/sc_n256_k192_Q0.in +0 -0
  22. rx/dec_polar_sc/sc_n256_k192_Q0.out +0 -0
  23. rx/dec_polar_sc/sc_n512_k192_Q0.in +0 -0
  24. rx/dec_polar_sc/sc_n512_k192_Q0.out +0 -0
  25. rx/dec_polar_sc/sc_n512_k489_Q0.in +0 -0
  26. rx/dec_polar_sc/sc_n512_k489_Q0.out +0 -0
  27. rx/dec_polar_scf/README.md +49 -0
  28. rx/dec_polar_scf/scf_n256_k192_crc8_t10_Q0.in +3 -0
  29. rx/dec_polar_scf/scf_n256_k192_crc8_t10_Q0.out +0 -0
  30. rx/dec_polar_scf/scf_n256_k192_crc8_t10_Q0.txt.raw +3 -0
  31. tx/tbcc_encoder_lte/README.md +123 -0
  32. tx/tbcc_encoder_lte/conv_encoder_tvec.in +0 -0
  33. tx/tbcc_encoder_lte/conv_encoder_tvec.out +3 -0
  34. tx/tbcc_encoder_lte/tbcc_encoder_tvec.in +0 -0
  35. tx/tbcc_encoder_lte/tbcc_encoder_tvec.out +3 -0
.gitattributes CHANGED
@@ -57,3 +57,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ rx/dec_polar_scf/scf_n256_k192_crc8_t10_Q0.in filter=lfs diff=lfs merge=lfs -text
61
+ tx/tbcc_encoder_lte/conv_encoder_tvec.out filter=lfs diff=lfs merge=lfs -text
62
+ tx/tbcc_encoder_lte/tbcc_encoder_tvec.out filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Arkastone Test Vectors
2
+
3
+ This dataset contains structured, versioned, and reproducible test vectors used in the **Arkastone** simulation framework for validating various encoder and decoder modules in a 5G-like communication stack.
4
+
5
+ The test vectors are grouped by subsystem — `coding`, `tx`, and `rx` — and organized for clarity, reproducibility, and CI/CD integration.
6
+
7
+ ---
8
+
9
+ ## 📁 Folder Structure
10
+
11
+ - `coding/` – Reference encoder data, matrices, and metadata (e.g., Polar, NR5G)
12
+ - `rx/` – Test inputs and expected outputs for decoder validation (SC, SCF, etc.)
13
+ - `tx/` – Encoder test vectors for LTE-like Turbo Convolutional Coding (TBCC)
14
+
15
+ ---
16
+
17
+ ## ✅ Highlights
18
+
19
+ - Files follow naming convention:
20
+ `ppile_<scheme>_n<N>_k<K>_[extra]_Q<quant>.in/.out`
21
+ - All `.in` files are input to decoder/encoder modules
22
+ - All `.out` files represent validated output (bit-level)
23
+ - Large metadata is compressed (`.tar`), grouped under `polar_nr5g_wrapper`
24
+ - Quantization schemes follow Q0 fixed-point rules (unless noted)
25
+ - Readme files are provided in each directory for more detailed usage
26
+
27
+ ---
28
+
29
+ ## 💡 Design Principles
30
+
31
+ - Avoid deep nesting for visibility and accessibility
32
+ - Ensure reproducibility across CI and local testing
33
+ - Separate heavy test vectors from source code repositories
34
+ - Enable scalable testing without Git LFS constraints
35
+ - Hosted externally for easy integration and public collaboration
36
+
37
+ ---
38
+
39
+ ## 📜 License
40
+
41
+ All test vectors and associated metadata are released under the **MIT License** unless stated otherwise.
42
+
43
+ ---
44
+
45
+ ## 🧠 Notes
46
+
47
+ - This structure is optimized for [Hugging Face Datasets](https://huggingface.co/datasets) and integrates cleanly with Python-based simulations.
48
+ - You may reference these vectors from simulation scripts or GitHub Actions using a downloader script and manifest.
49
+
50
+ ---
51
+
52
+ Maintained by [Furkan Ercan](https://github.com/furkanercan)
coding/polar_gmat_64x128/Gmat.csv ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
3
+ 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
4
+ 1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
5
+ 1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7
+ 1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
8
+ 1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
9
+ 1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
10
+ 1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
11
+ 1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
12
+ 1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
13
+ 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
14
+ 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
15
+ 1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
16
+ 1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
17
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
18
+ 1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
19
+ 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
20
+ 1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
21
+ 1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
22
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
23
+ 1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
24
+ 1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
25
+ 1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
26
+ 1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
27
+ 1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
28
+ 1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
29
+ 1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
30
+ 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
31
+ 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
32
+ 1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
33
+ 1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
34
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
35
+ 1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
36
+ 1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
37
+ 1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
38
+ 1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
39
+ 1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
40
+ 1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
41
+ 1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
42
+ 1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
43
+ 1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
44
+ 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
45
+ 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
46
+ 1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
47
+ 1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
48
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
49
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
50
+ 1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
51
+ 1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
52
+ 1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0
53
+ 1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
54
+ 1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0
55
+ 1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0
56
+ 1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0
57
+ 1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
58
+ 1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0
59
+ 1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0
60
+ 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0
61
+ 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0
62
+ 1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0
63
+ 1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0
64
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
coding/polar_gmat_64x128/README.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Polar GMAT 64x128 Test Vectors
2
+
3
+ This directory contains test data extracted using the traditional polar encoder implemented in the Arkastone framework.
4
+
5
+ ---
6
+
7
+ ## 📄 Files
8
+
9
+ - `Gmat.csv`: Generator matrix used for encoding
10
+ - `uncoded_data.csv`: Input information bits
11
+ - `encoded_data.csv`: Output bits after encoding
12
+
13
+ ---
14
+
15
+ ## ✅ Notes
16
+
17
+ - The generator matrix and associated data were extracted using a **64x128** Polar code configuration.
18
+ - These vectors are generated from the same encoder implementation used in simulation, ensuring consistency.
19
+ - The polar framework used here has been **extensively validated**, so these test cases are considered reference-grade.
20
+
21
+ ---
22
+
23
+ ## 🔒 Assumptions
24
+
25
+ - No CRC or puncturing applied
26
+ - Systematic encoding is not enabled
27
+ - Q0 quantization is assumed where applicable
coding/polar_gmat_64x128/encoded_data.csv ADDED
The diff for this file is too large to render. See raw diff
 
coding/polar_gmat_64x128/uncoded_data.csv ADDED
The diff for this file is too large to render. See raw diff
 
coding/polar_nr5g_wrapper/README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Polar NR5G Wrapper Test Metadata
2
+
3
+ This directory contains digitized plot data extracted from Valerio's paper, used to validate performance of the Polar NR5G wrapper encoder in Arkastone.
4
+
5
+ ---
6
+
7
+ ## 📄 Contents
8
+
9
+ - `automeris_pdcch_1.tar`: Full-resolution PDCCH curve
10
+ - `automeris_pdcch_2.tar`: Zoomed-in version of PDCCH curve
11
+ - `automeris_pucch_1.tar`: Full-resolution PUCCH curve
12
+ - `automeris_pucch_2.tar`: Zoomed-in version of PUCCH curve
13
+
14
+ ---
15
+
16
+ ## 🧰 How to Use
17
+
18
+ These `.tar` files contain digitized data extracted using the [WebPlotDigitizer](https://automeris.io/wpd/) tool.
19
+ To reuse the digitized plots:
20
+
21
+ 1. Visit: [https://automeris.io/wpd/](https://automeris.io/wpd/)
22
+ 2. Log in (free account)
23
+ 3. Upload the `.tar` file to view and export the dataset
24
+
25
+ ---
26
+
27
+ ## 📌 Notes
28
+
29
+ - The digitized plots correspond to PDCCH and PUCCH performance curves from Valerio's publication.
30
+ - Each signal type includes a zoomed-in version to support fine-grain analysis.
31
+
32
+ """
coding/polar_nr5g_wrapper/polar_nr5g_test_metadata/automeris_pdcch_1.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f09735dde2593d2212d7df53bf90648bcaa5df3081895b41ebaae595ba12fe3
3
+ size 686080
coding/polar_nr5g_wrapper/polar_nr5g_test_metadata/automeris_pdcch_2.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:887c38d4d0760c6797658af16fa50f3baae7a14760fb98ba1a62c34636c28460
3
+ size 686080
coding/polar_nr5g_wrapper/polar_nr5g_test_metadata/automeris_pucch_1.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfb04f1f1d0b07e1868b5483ec1cc185254c91108fba9467bd97504bfc29e3d5
3
+ size 1085440
coding/polar_nr5g_wrapper/polar_nr5g_test_metadata/automeris_pucch_2.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de3e2688fee3d482208744d19e7142f5b7c3c39316b01166039fadb24a6d12ad
3
+ size 1085440
coding/polar_nr5g_wrapper/polar_nr5g_wrapper_test_data_valerio.csv ADDED
@@ -0,0 +1,414 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ G,A,Channel,N,RateM,Seg
2
+ 19,12,PUCCH,32,S,0
3
+ 22,12,PUCCH,32,S,0
4
+ 31,12,PUCCH,32,S,0
5
+ 24,15,PUCCH,32,S,0
6
+ 25,18,PUCCH,32,S,0
7
+ 30,18,PUCCH,32,S,0
8
+ 31,19,PUCCH,32,S,0
9
+ 31,14,PUCCH,32,S,0
10
+ 33,12,PUCCH,32,R,0
11
+ 35,12,PUCCH,32,R,0
12
+ 35,13,PUCCH,32,R,0
13
+ 33,20,PUCCH,64,S,0
14
+ 33,14,PUCCH,64,S,0
15
+ 36,17,PUCCH,64,S,0
16
+ 38,12,PUCCH,64,S,0
17
+ 40,15,PUCCH,64,S,0
18
+ 44,16,PUCCH,64,S,0
19
+ 42,21,PUCCH,64,S,0
20
+ 37,23,PUCCH,64,S,0
21
+ 43,28,PUCCH,64,S,0
22
+ 50,34,PUCCH,64,S,0
23
+ 56,42,PUCCH,64,S,0
24
+ 61,45,PUCCH,64,S,0
25
+ 61,37,PUCCH,64,S,0
26
+ 56,34,PUCCH,64,S,0
27
+ 51,27,PUCCH,64,S,0
28
+ 57,28,PUCCH,64,S,0
29
+ 52,22,PUCCH,64,S,0
30
+ 46,22,PUCCH,64,S,0
31
+ 59,25,PUCCH,64,S,0
32
+ 42,12,PUCCH,64,P,0
33
+ 47,12,PUCCH,64,P,0
34
+ 51,12,PUCCH,64,P,0
35
+ 59,12,PUCCH,64,P,0
36
+ 63,12,PUCCH,64,P,0
37
+ 60,16,PUCCH,64,P,0
38
+ 62,19,PUCCH,64,P,0
39
+ 59,19,PUCCH,64,P,0
40
+ 53,17,PUCCH,64,P,0
41
+ 49,15,PUCCH,64,P,0
42
+ 56,15,PUCCH,64,P,0
43
+ 65,24,PUCCH,64,R,0
44
+ 71,28,PUCCH,64,R,0
45
+ 69,22,PUCCH,64,R,0
46
+ 66,17,PUCCH,64,R,0
47
+ 70,17,PUCCH,64,R,0
48
+ 65,13,PUCCH,64,R,0
49
+ 71,13,PUCCH,64,R,0
50
+ 65,51,PUCCH,128,S,0
51
+ 74,57,PUCCH,128,S,0
52
+ 88,40,PUCCH,128,S,0
53
+ 112,54,PUCCH,128,S,0
54
+ 119,106,PUCCH,128,S,0
55
+ 99,77,PUCCH,128,S,0
56
+ 76,22,PUCCH,128,P,0
57
+ 85,23,PUCCH,128,P,0
58
+ 119,20,PUCCH,128,P,0
59
+ 117,37,PUCCH,128,P,0
60
+ 108,29,PUCCH,128,P,0
61
+ 130,60,PUCCH,128,R,0
62
+ 137,66,PUCCH,128,R,0
63
+ 133,43,PUCCH,128,R,0
64
+ 133,23,PUCCH,128,R,0
65
+ 133,114,PUCCH,256,S,0
66
+ 133,83,PUCCH,256,S,0
67
+ 150,71,PUCCH,256,S,0
68
+ 153,100,PUCCH,256,S,0
69
+ 162,143,PUCCH,256,S,0
70
+ 202,106,PUCCH,256,S,0
71
+ 231,114,PUCCH,256,S,0
72
+ 220,186,PUCCH,256,S,0
73
+ 245,229,PUCCH,256,S,0
74
+ 240,117,PUCCH,256,S,0
75
+ 153,51,PUCCH,256,P,0
76
+ 177,43,PUCCH,256,P,0
77
+ 204,40,PUCCH,256,P,0
78
+ 148,21,PUCCH,256,P,0
79
+ 195,23,PUCCH,256,P,0
80
+ 245,23,PUCCH,256,P,0
81
+ 231,63,PUCCH,256,P,0
82
+ 247,94,PUCCH,256,P,0
83
+ 260,20,PUCCH,256,R,0
84
+ 276,31,PUCCH,256,R,0
85
+ 296,20,PUCCH,256,R,0
86
+ 276,71,PUCCH,256,R,0
87
+ 260,94,PUCCH,256,R,0
88
+ 258,131,PUCCH,256,R,0
89
+ 278,145,PUCCH,256,R,0
90
+ 260,240,PUCCH,512,S,0
91
+ 260,166,PUCCH,512,S,0
92
+ 294,146,PUCCH,512,S,0
93
+ 316,217,PUCCH,512,S,0
94
+ 370,340,PUCCH,512,S,0
95
+ 417,220,PUCCH,512,S,0
96
+ 458,429,PUCCH,512,S,0
97
+ 500,486,PUCCH,512,S,0
98
+ 489,231,PUCCH,512,S,0
99
+ 500,237,PUCCH,512,S,0
100
+ 292,116,PUCCH,512,P,0
101
+ 294,37,PUCCH,512,P,0
102
+ 325,60,PUCCH,512,P,0
103
+ 348,131,PUCCH,512,P,0
104
+ 377,80,PUCCH,512,P,0
105
+ 435,57,PUCCH,512,P,0
106
+ 458,180,PUCCH,512,P,0
107
+ 500,149,PUCCH,512,P,0
108
+ 500,34,PUCCH,512,P,0
109
+ 514,274,PUCCH,512,R,0
110
+ 520,251,PUCCH,512,R,0
111
+ 565,297,PUCCH,512,R,0
112
+ 545,171,PUCCH,512,R,0
113
+ 554,120,PUCCH,512,R,0
114
+ 516,40,PUCCH,512,R,0
115
+ 552,69,PUCCH,512,R,0
116
+ 590,46,PUCCH,512,R,0
117
+ 725,43,PUCCH,512,R,0
118
+ 884,43,PUCCH,512,R,0
119
+ 1090,377,PUCCH,512,R,1
120
+ 1139,377,PUCCH,512,R,1
121
+ 1110,406,PUCCH,512,R,1
122
+ 1133,426,PUCCH,512,R,1
123
+ 1088,474,PUCCH,512,R,1
124
+ 1142,517,PUCCH,512,R,1
125
+ 1139,606,PUCCH,512,R,1
126
+ 1088,580,PUCCH,512,R,1
127
+ 536,340,PUCCH,1024,S,0
128
+ 592,546,PUCCH,1024,S,0
129
+ 962,874,PUCCH,1024,S,0
130
+ 772,586,PUCCH,1024,S,0
131
+ 758,409,PUCCH,1024,S,0
132
+ 1008,457,PUCCH,1024,S,0
133
+ 890,590,PUCCH,1024,S,0
134
+ 1009,719,PUCCH,1024,S,0
135
+ 583,234,PUCCH,1024,P,0
136
+ 725,274,PUCCH,1024,P,0
137
+ 1008,406,PUCCH,1024,P,0
138
+ 805,203,PUCCH,1024,P,0
139
+ 964,171,PUCCH,1024,P,0
140
+ 1027,1009,PUCCH,1024,R,0
141
+ 1063,992,PUCCH,1024,R,0
142
+ 1041,900,PUCCH,1024,R,0
143
+ 1032,666,PUCCH,1024,R,0
144
+ 1157,309,PUCCH,1024,R,0
145
+ 1581,323,PUCCH,1024,R,0
146
+ 1148,157,PUCCH,1024,R,0
147
+ 1027,71,PUCCH,1024,R,0
148
+ 1025,1006,PUCCH,1024,R,0
149
+ 1045,932,PUCCH,1024,R,0
150
+ 1036,792,PUCCH,1024,R,0
151
+ 1074,674,PUCCH,1024,R,0
152
+ 1052,574,PUCCH,1024,R,0
153
+ 1030,406,PUCCH,1024,R,0
154
+ 1052,103,PUCCH,1024,R,0
155
+ 1041,1032,PUCCH,1024,S,1
156
+ 1074,1043,PUCCH,1024,S,1
157
+ 1139,1092,PUCCH,1024,S,1
158
+ 1097,626,PUCCH,1024,S,1
159
+ 1238,954,PUCCH,1024,S,1
160
+ 1310,632,PUCCH,1024,S,1
161
+ 1444,1380,PUCCH,1024,S,1
162
+ 1570,1117,PUCCH,1024,S,1
163
+ 1886,1645,PUCCH,1024,S,1
164
+ 1790,1166,PUCCH,1024,S,1
165
+ 2023,912,PUCCH,1024,S,1
166
+ 1164,480,PUCCH,1024,P,1
167
+ 1155,377,PUCCH,1024,P,1
168
+ 1308,543,PUCCH,1024,P,1
169
+ 1408,380,PUCCH,1024,P,1
170
+ 1491,620,PUCCH,1024,P,1
171
+ 1660,534,PUCCH,1024,P,1
172
+ 2030,857,PUCCH,1024,P,1
173
+ 2032,380,PUCCH,1024,P,1
174
+ 2061,384,PUCCH,1024,R,1
175
+ 2182,384,PUCCH,1024,R,1
176
+ 2122,706,PUCCH,1024,R,1
177
+ 2068,1335,PUCCH,1024,R,1
178
+ 2153,1669,PUCCH,1024,R,1
179
+ 36,12,PDCCH,64,S,0
180
+ 36,2,PDCCH,64,S,0
181
+ 42,2,PDCCH,64,S,0
182
+ 48,8,PDCCH,64,S,0
183
+ 41,6,PDCCH,64,S,0
184
+ 43,15,PDCCH,64,S,0
185
+ 52,26,PDCCH,64,S,0
186
+ 60,35,PDCCH,64,S,0
187
+ 63,39,PDCCH,64,S,0
188
+ 63,33,PDCCH,64,S,0
189
+ 63,22,PDCCH,64,S,0
190
+ 63,15,PDCCH,64,S,0
191
+ 64,13,PDCCH,64,S,0
192
+ 63,12,PDCCH,64,S,0
193
+ 63,10,PDCCH,64,S,0
194
+ 63,4,PDCCH,64,S,0
195
+ 59,3,PDCCH,64,S,0
196
+ 56,2,PDCCH,64,S,0
197
+ 49,1,PDCCH,64,S,0
198
+ 46,1,PDCCH,64,S,0
199
+ 51,8,PDCCH,64,S,0
200
+ 56,6,PDCCH,64,S,0
201
+ 52,14,PDCCH,64,S,0
202
+ 49,19,PDCCH,64,S,0
203
+ 57,14,PDCCH,64,S,0
204
+ 57,23,PDCCH,64,S,0
205
+ 64,11,PDCCH,64,S,0
206
+ 63,2,PDCCH,64,P,0
207
+ 61,1,PDCCH,64,P,0
208
+ 60,1,PDCCH,64,P,0
209
+ 62,2,PDCCH,64,P,0
210
+ 64,1,PDCCH,64,P,0
211
+ 72,14,PDCCH,64,R,0
212
+ 69,13,PDCCH,64,R,0
213
+ 66,4,PDCCH,64,R,0
214
+ 66,7,PDCCH,64,R,0
215
+ 72,8,PDCCH,64,R,0
216
+ 69,7,PDCCH,64,R,0
217
+ 68,10,PDCCH,64,R,0
218
+ 71,4,PDCCH,64,R,0
219
+ 68,4,PDCCH,64,R,0
220
+ 71,1,PDCCH,64,R,0
221
+ 68,2,PDCCH,64,R,0
222
+ 67,41,PDCCH,128,S,0
223
+ 66,20,PDCCH,128,S,0
224
+ 73,21,PDCCH,128,S,0
225
+ 76,15,PDCCH,128,S,0
226
+ 81,52,PDCCH,128,S,0
227
+ 105,72,PDCCH,128,S,0
228
+ 125,98,PDCCH,128,S,0
229
+ 122,72,PDCCH,128,S,0
230
+ 109,54,PDCCH,128,S,0
231
+ 123,41,PDCCH,128,S,0
232
+ 123,34,PDCCH,128,S,0
233
+ 111,33,PDCCH,128,S,0
234
+ 91,33,PDCCH,128,S,0
235
+ 100,48,PDCCH,128,S,0
236
+ 100,26,PDCCH,128,S,0
237
+ 94,62,PDCCH,128,S,0
238
+ 78,37,PDCCH,128,S,0
239
+ 125,57,PDCCH,128,S,0
240
+ 75,8,PDCCH,128,P,0
241
+ 75,3,PDCCH,128,P,0
242
+ 89,13,PDCCH,128,P,0
243
+ 97,3,PDCCH,128,P,0
244
+ 105,18,PDCCH,128,P,0
245
+ 124,27,PDCCH,128,P,0
246
+ 123,5,PDCCH,128,P,0
247
+ 113,12,PDCCH,128,P,0
248
+ 129,46,PDCCH,128,R,0
249
+ 141,52,PDCCH,128,R,0
250
+ 134,37,PDCCH,128,R,0
251
+ 129,17,PDCCH,128,R,0
252
+ 138,7,PDCCH,128,R,0
253
+ 139,24,PDCCH,128,R,0
254
+ 129,103,PDCCH,256,S,0
255
+ 130,55,PDCCH,256,S,0
256
+ 139,81,PDCCH,256,S,0
257
+ 142,63,PDCCH,256,S,0
258
+ 146,65,PDCCH,256,S,0
259
+ 146,55,PDCCH,256,S,0
260
+ 146,45,PDCCH,256,S,0
261
+ 160,54,PDCCH,256,S,0
262
+ 178,61,PDCCH,256,S,0
263
+ 198,69,PDCCH,256,S,0
264
+ 228,81,PDCCH,256,S,0
265
+ 247,91,PDCCH,256,S,0
266
+ 247,134,PDCCH,256,S,0
267
+ 252,108,PDCCH,256,S,0
268
+ 230,132,PDCCH,256,S,0
269
+ 221,120,PDCCH,256,S,0
270
+ 236,102,PDCCH,256,S,0
271
+ 210,100,PDCCH,256,S,0
272
+ 198,122,PDCCH,256,S,0
273
+ 190,99,PDCCH,256,S,0
274
+ 168,83,PDCCH,256,S,0
275
+ 147,100,PDCCH,256,S,0
276
+ 167,119,PDCCH,256,S,0
277
+ 163,135,PDCCH,256,S,0
278
+ 181,138,PDCCH,256,S,0
279
+ 147,112,PDCCH,256,S,0
280
+ 211,137,PDCCH,256,S,0
281
+ 146,39,PDCCH,256,P,0
282
+ 147,4,PDCCH,256,P,0
283
+ 150,17,PDCCH,256,P,0
284
+ 157,34,PDCCH,256,P,0
285
+ 171,16,PDCCH,256,P,0
286
+ 189,12,PDCCH,256,P,0
287
+ 220,7,PDCCH,256,P,0
288
+ 232,19,PDCCH,256,P,0
289
+ 190,35,PDCCH,256,P,0
290
+ 222,55,PDCCH,256,P,0
291
+ 240,73,PDCCH,256,P,0
292
+ 209,31,PDCCH,256,P,0
293
+ 187,51,PDCCH,256,P,0
294
+ 214,68,PDCCH,256,P,0
295
+ 249,5,PDCCH,256,P,0
296
+ 249,81,PDCCH,256,P,0
297
+ 252,43,PDCCH,256,P,0
298
+ 257,118,PDCCH,256,R,0
299
+ 269,122,PDCCH,256,R,0
300
+ 285,136,PDCCH,256,R,0
301
+ 282,122,PDCCH,256,R,0
302
+ 261,103,PDCCH,256,R,0
303
+ 276,102,PDCCH,256,R,0
304
+ 271,74,PDCCH,256,R,0
305
+ 263,67,PDCCH,256,R,0
306
+ 273,46,PDCCH,256,R,0
307
+ 258,18,PDCCH,256,R,0
308
+ 263,7,PDCCH,256,R,0
309
+ 283,22,PDCCH,256,R,0
310
+ 284,63,PDCCH,256,R,0
311
+ 258,50,PDCCH,256,R,0
312
+ 280,6,PDCCH,256,R,0
313
+ 291,4,PDCCH,256,R,0
314
+ 313,5,PDCCH,256,R,0
315
+ 334,5,PDCCH,256,R,0
316
+ 367,4,PDCCH,256,R,0
317
+ 393,5,PDCCH,256,R,0
318
+ 415,5,PDCCH,256,R,0
319
+ 458,7,PDCCH,256,R,0
320
+ 486,4,PDCCH,256,R,0
321
+ 504,6,PDCCH,256,R,0
322
+ 259,138,PDCCH,512,S,0
323
+ 260,129,PDCCH,512,S,0
324
+ 266,135,PDCCH,512,S,0
325
+ 273,139,PDCCH,512,S,0
326
+ 280,139,PDCCH,512,S,0
327
+ 292,139,PDCCH,512,S,0
328
+ 291,128,PDCCH,512,S,0
329
+ 292,115,PDCCH,512,S,0
330
+ 301,115,PDCCH,512,S,0
331
+ 291,109,PDCCH,512,S,0
332
+ 300,132,PDCCH,512,S,0
333
+ 309,125,PDCCH,512,S,0
334
+ 300,122,PDCCH,512,S,0
335
+ 320,122,PDCCH,512,S,0
336
+ 334,128,PDCCH,512,S,0
337
+ 345,135,PDCCH,512,S,0
338
+ 359,139,PDCCH,512,S,0
339
+ 339,139,PDCCH,512,S,0
340
+ 331,135,PDCCH,512,S,0
341
+ 319,132,PDCCH,512,S,0
342
+ 308,138,PDCCH,512,S,0
343
+ 289,101,PDCCH,512,P,0
344
+ 301,105,PDCCH,512,P,0
345
+ 317,112,PDCCH,512,P,0
346
+ 336,122,PDCCH,512,P,0
347
+ 348,128,PDCCH,512,P,0
348
+ 359,133,PDCCH,512,P,0
349
+ 371,137,PDCCH,512,P,0
350
+ 379,138,PDCCH,512,P,0
351
+ 392,139,PDCCH,512,P,0
352
+ 405,139,PDCCH,512,P,0
353
+ 430,138,PDCCH,512,P,0
354
+ 446,139,PDCCH,512,P,0
355
+ 483,137,PDCCH,512,P,0
356
+ 506,139,PDCCH,512,P,0
357
+ 508,97,PDCCH,512,P,0
358
+ 507,33,PDCCH,512,P,0
359
+ 507,15,PDCCH,512,P,0
360
+ 475,13,PDCCH,512,P,0
361
+ 450,13,PDCCH,512,P,0
362
+ 430,14,PDCCH,512,P,0
363
+ 398,14,PDCCH,512,P,0
364
+ 337,12,PDCCH,512,P,0
365
+ 309,15,PDCCH,512,P,0
366
+ 291,15,PDCCH,512,P,0
367
+ 294,33,PDCCH,512,P,0
368
+ 289,77,PDCCH,512,P,0
369
+ 313,84,PDCCH,512,P,0
370
+ 326,56,PDCCH,512,P,0
371
+ 306,36,PDCCH,512,P,0
372
+ 372,77,PDCCH,512,P,0
373
+ 432,54,PDCCH,512,P,0
374
+ 443,100,PDCCH,512,P,0
375
+ 392,56,PDCCH,512,P,0
376
+ 370,42,PDCCH,512,P,0
377
+ 350,94,PDCCH,512,P,0
378
+ 391,109,PDCCH,512,P,0
379
+ 414,84,PDCCH,512,P,0
380
+ 457,74,PDCCH,512,P,0
381
+ 480,45,PDCCH,512,P,0
382
+ 434,37,PDCCH,512,P,0
383
+ 401,36,PDCCH,512,P,0
384
+ 474,103,PDCCH,512,P,0
385
+ 487,78,PDCCH,512,P,0
386
+ 420,114,PDCCH,512,P,0
387
+ 513,138,PDCCH,512,R,0
388
+ 522,138,PDCCH,512,R,0
389
+ 541,139,PDCCH,512,R,0
390
+ 576,139,PDCCH,512,R,0
391
+ 597,140,PDCCH,512,R,0
392
+ 597,95,PDCCH,512,R,0
393
+ 597,45,PDCCH,512,R,0
394
+ 598,17,PDCCH,512,R,0
395
+ 582,16,PDCCH,512,R,0
396
+ 560,16,PDCCH,512,R,0
397
+ 524,16,PDCCH,512,R,0
398
+ 514,16,PDCCH,512,R,0
399
+ 515,35,PDCCH,512,R,0
400
+ 515,66,PDCCH,512,R,0
401
+ 514,94,PDCCH,512,R,0
402
+ 516,119,PDCCH,512,R,0
403
+ 540,115,PDCCH,512,R,0
404
+ 575,92,PDCCH,512,R,0
405
+ 551,63,PDCCH,512,R,0
406
+ 556,110,PDCCH,512,R,0
407
+ 535,82,PDCCH,512,R,0
408
+ 579,48,PDCCH,512,R,0
409
+ 550,37,PDCCH,512,R,0
410
+ 566,61,PDCCH,512,R,0
411
+ 552,93,PDCCH,512,R,0
412
+ 579,117,PDCCH,512,R,0
413
+ 531,42,PDCCH,512,R,0
414
+ 864,32,PBCH,512,R,0
rx/README.md ADDED
@@ -0,0 +1 @@
 
 
1
+ This repository contains the test vectors for the Arkastone framework.
rx/dec_polar_sc/README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SC Decoder Test Vectors (Polar)
2
+
3
+ This directory contains validated test vectors used for **Successive Cancellation (SC)** decoding in the Arkastone framework.
4
+
5
+ ---
6
+
7
+ ## 📄 File Naming Convention
8
+
9
+ Each test case includes:
10
+ - `.in` — Input LLRs for the SC decoder
11
+ - `.out` — Expected hard-decoded output bits
12
+
13
+ Files follow this format:
14
+ ```
15
+ sc_n<N>_k<K>_Q<quant>.in/.out
16
+ ```
17
+
18
+ ---
19
+
20
+ ## 🔢 Quantization Format (Q-notation)
21
+
22
+ The suffix `Q<format>` describes the quantization used:
23
+
24
+ - `Q0` → No quantization (i.e., floating-point LLRs)
25
+ - `QXYZ` → Quantized format, where:
26
+ - **X** = number of bits for internal decoder quantization
27
+ - **Y** = number of bits for external (channel) quantization
28
+ - **Z** = number of fractional bits (for fixed-point representation)
29
+
30
+ Example:
31
+ `Q751` → 7-bit internal, 5-bit external input, 1 fractional bit (fixed-point)
32
+
33
+ ---
34
+
35
+ ## 📌 Notes
36
+
37
+ - These vectors are generated from a private repository developed during Furkan Ercan's PhD, named **ppile**.
38
+ - SC decoder configurations are modeled after realistic **3GPP NR Polar codes**, as defined in TS 38.212.
39
+ - Naming is consistent with encoder settings used in the Arkastone simulation chain.
40
+
41
+ ---
42
+
43
+ ## 🔒 Assumptions
44
+
45
+ - CRC is not applied in these test vectors
46
+ - Test vectors are generated using various SNR points, which are intentionally not provided. The goal is to verify the functionality, not the performance.
47
+ - LLRs are either raw float (Q0) or fixed-point (QXYZ)
48
+ - Channel model is AWGN with zero mean
rx/dec_polar_sc/sc_n1024_k128_Q0.in ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n1024_k128_Q0.out ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n1024_k512_Q0.in ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n1024_k512_Q0.out ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n1024_k864_Q0.in ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n1024_k864_Q0.out ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n256_k192_Q0.in ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n256_k192_Q0.out ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n512_k192_Q0.in ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n512_k192_Q0.out ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n512_k489_Q0.in ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_sc/sc_n512_k489_Q0.out ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_scf/README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SCF Decoder Test Vectors (Polar)
2
+
3
+ This directory contains validated test vectors used for **Successive Cancellation Flip (SCF)** decoding in the Arkastone framework.
4
+
5
+ ---
6
+
7
+ ## 📄 File Naming Convention
8
+
9
+ Each test case includes:
10
+ - `.in` — Input LLRs for the SCF decoder
11
+ - `.out` — Expected hard-decoded output bits
12
+ - `.txt.raw` — Raw trace or metadata used for analysis (optional)
13
+
14
+ Files follow this format:
15
+ ```
16
+ scf_n<N>_k<K>_crc<crc>_t<max_flips>_Q<quant>.in/.out
17
+ ```
18
+
19
+ ---
20
+
21
+ ## 🔢 Quantization Format (Q-notation)
22
+
23
+ The suffix `Q<format>` describes the quantization used:
24
+
25
+ - `Q0` → No quantization (i.e., floating-point LLRs)
26
+ - `QXYZ` → Quantized format, where:
27
+ - **X** = number of bits for internal decoder quantization
28
+ - **Y** = number of bits for external (channel) quantization
29
+ - **Z** = number of fractional bits (for fixed-point representation)
30
+
31
+ Example:
32
+ `Q562` → 5-bit internal, 6-bit external input, 2 fractional bits
33
+
34
+ ---
35
+
36
+ ## 📌 Notes
37
+
38
+ - These test vectors are produced using a private decoding framework developed during Furkan Ercan's PhD called **ppile**.
39
+ - All configurations are aligned with **3GPP NR Polar codes** as defined in TS 38.212.
40
+ - `crc<crc>` denotes the CRC length used (e.g., `crc8`)
41
+ - `t<max_flips>` specifies the maximum number of bit-flips allowed in the SCF process
42
+
43
+ ---
44
+
45
+ ## 🔒 Assumptions
46
+
47
+ - AWGN channel model
48
+ - LLRs are in either floating-point (`Q0`) or fixed-point (`QXYZ`) format
49
+ - Output is the final decoded bitstream after SCF post-processing
rx/dec_polar_scf/scf_n256_k192_crc8_t10_Q0.in ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da6c8368a6ec2e019aa29ecda6e399a7a6c2e259b9cbf217139f9c4cb880eedd
3
+ size 19692474
rx/dec_polar_scf/scf_n256_k192_crc8_t10_Q0.out ADDED
The diff for this file is too large to render. See raw diff
 
rx/dec_polar_scf/scf_n256_k192_crc8_t10_Q0.txt.raw ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9aba09fcd705f95db83fc03ee1148f4faee062dbb5530a378b0d5b3f572883e3
3
+ size 36713700
tx/tbcc_encoder_lte/README.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Tail Biting Convolutional Encoder (LTE Rate 1/3)
2
+
3
+ This project provides a minimal test wrapper for the LTE-style tail biting convolutional encoder using an isolated function from the SRSRAN stack.
4
+
5
+ ---
6
+
7
+ ## 📌 Dependency: `srsran_convcoder_encode`
8
+
9
+ This project depends on a stripped-down version of the convolutional encoder module from [SRSRAN](https://github.com/srsran/srsRAN). Only the following function and struct are used:
10
+
11
+ ### 🔧 Function
12
+
13
+ ```c
14
+ int srsran_convcoder_encode(srsran_convcoder_t* q, uint8_t* input, uint8_t* output, uint32_t frame_length);
15
+ ```
16
+
17
+ ### 🧱 Struct
18
+
19
+ ```c
20
+ typedef struct {
21
+ uint32_t R; // Code rate denominator (e.g., 3 for rate-1/3)
22
+ uint32_t K; // Constraint length (e.g., 7)
23
+ int poly[3]; // Generator polynomials (octal): 0133, 0171, 0165
24
+ bool tail_biting; // Enables tail biting (set true for LTE)
25
+ } srsran_convcoder_t;
26
+ ```
27
+
28
+ ### ⚠️ Frame Length Requirement
29
+
30
+ ```c
31
+ frame_length > q->K + 1
32
+ ```
33
+
34
+ - For LTE (K=7), `frame_length` must be at least **9**.
35
+
36
+ ---
37
+
38
+ ## 🛠 Build Instructions
39
+
40
+ ### ✅ GCC (Command Line)
41
+
42
+ ```bash
43
+ gcc -g main.c convcoder.c -o tbcc_test
44
+ ./tbcc_test
45
+ ```
46
+
47
+ > Make sure both `main.c` and `convcoder.c` are in the same folder.
48
+
49
+ ---
50
+
51
+ ### 🐞 VSCode Setup
52
+
53
+ 1. Install the **C/C++ Extension** by Microsoft
54
+ 2. Create a `.vscode/tasks.json` file:
55
+ ```json
56
+ {
57
+ "version": "2.0.0",
58
+ "tasks": [
59
+ {
60
+ "label": "build",
61
+ "type": "shell",
62
+ "command": "gcc",
63
+ "args": ["-g", "main.c", "convcoder.c", "-o", "tbcc_test"],
64
+ "group": { "kind": "build", "isDefault": true },
65
+ "problemMatcher": ["$gcc"]
66
+ }
67
+ ]
68
+ }
69
+ ```
70
+
71
+ 3. Create `.vscode/launch.json` for debugging:
72
+ ```json
73
+ {
74
+ "version": "0.2.0",
75
+ "configurations": [
76
+ {
77
+ "name": "Debug TBCC",
78
+ "type": "cppdbg",
79
+ "request": "launch",
80
+ "program": "${workspaceFolder}/tbcc_test",
81
+ "args": [],
82
+ "stopAtEntry": false,
83
+ "cwd": "${workspaceFolder}",
84
+ "environment": [],
85
+ "MIMode": "gdb",
86
+ "preLaunchTask": "build"
87
+ }
88
+ ]
89
+ }
90
+ ```
91
+
92
+ ---
93
+
94
+ ## 🧪 Example Use
95
+
96
+ ```c
97
+ uint8_t input_bits[] = {1,0,1,1,0,0,1,1,1};
98
+ srsran_convcoder_t coder = {
99
+ .R = 3,
100
+ .K = 7,
101
+ .poly = {0133, 0171, 0165},
102
+ .tail_biting = true
103
+ };
104
+ srsran_convcoder_encode(&coder, input_bits, output_bits, 9);
105
+ ```
106
+
107
+ ---
108
+
109
+ ## 📂 File List
110
+
111
+ ```
112
+ main.c # Test harness
113
+ convcoder.c # TBCC encoder implementation
114
+ convcoder.h # Struct and function prototype
115
+ .vscode/ # VSCode debug/build configs
116
+ README.md # This file
117
+ ```
118
+
119
+ ---
120
+
121
+ ## 🔗 License
122
+
123
+ Derived from open-source SRSRAN; retain license compliance if redistributing.
tx/tbcc_encoder_lte/conv_encoder_tvec.in ADDED
The diff for this file is too large to render. See raw diff
 
tx/tbcc_encoder_lte/conv_encoder_tvec.out ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c6d877e63a5cd146530d8ac672a6f47eab79aaec0b164a2f9e635b84df244d5
3
+ size 15296374
tx/tbcc_encoder_lte/tbcc_encoder_tvec.in ADDED
The diff for this file is too large to render. See raw diff
 
tx/tbcc_encoder_lte/tbcc_encoder_tvec.out ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c51ee07b7ae9634f1465719d5050b94c4b783db3b13b2fe20d5cdc9b7030b9af
3
+ size 15067294