cargo : warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
At line:1 char:29
+ ... vila-arrow; cargo bench --bench simd_bench > bench_results.txt 2>&1;  ...
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (warning: profil...workspace root::String) [], RemoteException
    + FullyQualifiedErrorId : NativeCommandError
 
package:   D:\arxis\avx-parallel\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-ml\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-arrow\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-compress\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-geo\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-image\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-numeric\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-telemetry\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avl-observability\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avl-auth\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avl-queue\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avl-storage\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-atom\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-molecule\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-cli\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-config\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-events\Cargo.toml
workspace: D:\arxis\Cargo.toml
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   D:\arxis\avx-http\Cargo.toml
workspace: D:\arxis\Cargo.toml
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
warning: missing documentation for an associated function
  --> avx-arrow\src\array.rs:34:5
   |
34 |     pub fn new(data: Vec<i8>) -> Self {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> avx-arrow\src\lib.rs:26:9
   |
26 | #![warn(missing_docs)]
   |         ^^^^^^^^^^^^

warning: missing documentation for a method
  --> avx-arrow\src\array.rs:38:5
   |
38 |     pub fn value(&self, index: usize) -> Result<i8> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
  --> avx-arrow\src\array.rs:44:5
   |
44 |     pub fn values(&self) -> &[i8] { &self.data }
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for an associated function
  --> avx-arrow\src\array.rs:65:5
   |
65 |     pub fn new(data: Vec<i16>) -> Self {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
  --> avx-arrow\src\array.rs:69:5
   |
69 |     pub fn value(&self, index: usize) -> Result<i16> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
  --> avx-arrow\src\array.rs:75:5
   |
75 |     pub fn values(&self) -> &[i16] { &self.data }
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for an associated function
  --> avx-arrow\src\array.rs:96:5
   |
96 |     pub fn new(data: Vec<i32>) -> Self {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:100:5
    |
100 |     pub fn value(&self, index: usize) -> Result<i32> {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:106:5
    |
106 |     pub fn values(&self) -> &[i32] { &self.data }
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for an associated function
   --> avx-arrow\src\array.rs:229:5
    |
229 |     pub fn new(data: Vec<u8>) -> Self {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:233:5
    |
233 |     pub fn value(&self, index: usize) -> Result<u8> {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:239:5
    |
239 |     pub fn values(&self) -> &[u8] { &self.data }
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for an associated function
   --> avx-arrow\src\array.rs:260:5
    |
260 |     pub fn new(data: Vec<u16>) -> Self {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:264:5
    |
264 |     pub fn value(&self, index: usize) -> Result<u16> {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:270:5
    |
270 |     pub fn values(&self) -> &[u16] { &self.data }
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for an associated function
   --> avx-arrow\src\array.rs:291:5
    |
291 |     pub fn new(data: Vec<u32>) -> Self {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:295:5
    |
295 |     pub fn value(&self, index: usize) -> Result<u32> {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:301:5
    |
301 |     pub fn values(&self) -> &[u32] { &self.data }
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for an associated function
   --> avx-arrow\src\array.rs:322:5
    |
322 |     pub fn new(data: Vec<u64>) -> Self {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:326:5
    |
326 |     pub fn value(&self, index: usize) -> Result<u64> {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:332:5
    |
332 |     pub fn values(&self) -> &[u64] { &self.data }
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for an associated function
   --> avx-arrow\src\array.rs:355:5
    |
355 |     pub fn new(data: Vec<f32>) -> Self {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:359:5
    |
359 |     pub fn value(&self, index: usize) -> Result<f32> {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: missing documentation for a method
   --> avx-arrow\src\array.rs:365:5
    |
365 |     pub fn values(&self) -> &[f32] { &self.data }
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: `avx-arrow` (lib) generated 24 warnings
    Finished `bench` profile [optimized] target(s) in 47.52s
     Running benches\simd_bench.rs (D:\arxis\target\release\deps\simd_bench-3e7b7e3cfe5ef241.exe)

running 0 tests

test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s






