cargo rustc --release -- -C target-cpu=native --emit link=Viridithas-AAC05850-D8B243C9
   Compiling proc-macro2 v1.0.79
   Compiling unicode-ident v1.0.12
   Compiling windows_x86_64_gnu v0.52.6
   Compiling utf8parse v0.2.1
   Compiling anstyle-query v1.0.2
   Compiling anstyle v1.0.6
   Compiling colorchoice v1.0.0
   Compiling clap_lex v0.7.0
   Compiling cfg-if v1.0.0
   Compiling strsim v0.11.0
   Compiling heck v0.5.0
   Compiling anyhow v1.0.86
   Compiling static_assertions v1.1.0
   Compiling viridithas v15.0.0 (/tmp/tmp7rc0igi7/Viridithas/Viridithas-tmp)
   Compiling byteorder v1.5.0
   Compiling arrayvec v0.7.4
   Compiling twox-hash v1.6.3
   Compiling anstyle-parse v0.2.3
   Compiling anstream v0.6.13
   Compiling windows-targets v0.52.6
   Compiling windows-sys v0.52.0
   Compiling ruzstd v0.7.0
   Compiling clap_builder v4.5.2
   Compiling quote v1.0.35
   Compiling syn v2.0.55
   Compiling clap_derive v4.5.3
   Compiling clap v4.5.3
error[E0425]: cannot find function `size_of` in this scope
   --> src/nnue/network/layers.rs:397:48
    |
397 |         const NUM_SUMS: usize = AVX512CHUNK / (size_of::<VecF32>() / size_of::<f32>());
    |                                                ^^^^^^^ not found in this scope
    |
help: consider importing one of these items
    |
144 +     use core::mem::size_of;
    |
144 +     use std::mem::size_of;
    |

error[E0425]: cannot find function `size_of` in this scope
   --> src/nnue/network/layers.rs:397:70
    |
397 |         const NUM_SUMS: usize = AVX512CHUNK / (size_of::<VecF32>() / size_of::<f32>());
    |                                                                      ^^^^^^^ not found in this scope
    |
help: consider importing one of these items
    |
144 +     use core::mem::size_of;
    |
144 +     use std::mem::size_of;
    |

For more information about this error, try `rustc --explain E0425`.
error: could not compile `viridithas` (bin "viridithas") due to 2 previous errors
make: *** [Makefile:28: openbench] Error 101