diffusion_rs_backend 0.1.0

Blazingly fast inference of diffusion models.
Documentation
Build #2012131 2025-04-19 04:01:58

Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.

# rustc version
rustc 1.88.0-nightly (191df20fc 2025-04-18)# docs.rs version
docsrs 0.6.0 (ee9a3fe6 2025-03-28)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace-builder/builds/diffusion_rs_backend-0.1.0/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace-builder/builds/diffusion_rs_backend-0.1.0/source:/opt/rustwide/workdir:ro,Z" "-v" "/home/cratesfyi/workspace-builder/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/home/cratesfyi/workspace-builder/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "DOCS_RS=1" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "6442450944" "--cpus" "6" "--user" "1001:1001" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0b074c097205a61b89e8ad263052f976b2b332c4dc5f02aef1fe52501660d6e" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20250418-1.88.0-nightly-191df20fc\", \"--static-root-path\", \"/-/rustdoc.static/\", \"--cap-lints\", \"warn\", \"--extern-html-root-takes-precedence\"]" "--offline" "-Zunstable-options" "--config=doc.extern-map.registries.crates-io=\"https://docs.rs/{pkg_name}/{version}/x86_64-unknown-linux-gnu\"" "-Zrustdoc-scrape-examples" "-j6" "--target" "x86_64-unknown-linux-gnu", kill_on_drop: false }`
[INFO] [stdout] a60f8e655caad3446eaa4bdd115ac0c3ee3a8572767e0b2aa907ecbdfe084ada
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] running `Command { std: "docker" "start" "-a" "a60f8e655caad3446eaa4bdd115ac0c3ee3a8572767e0b2aa907ecbdfe084ada", kill_on_drop: false }`
[INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op
[INFO] [stderr]     Checking diffusion_rs_common v0.1.0
[INFO] [stderr] error[E0277]: the trait bound `half::bf16: SampleBorrow<half::bf16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3663:55
[INFO] [stderr]      |
[INFO] [stderr] 3663 |                     rand::distributions::Uniform::new(bf16::from_f64(min), bf16::from_f64(max));
[INFO] [stderr]      |                     --------------------------------- ^^^^^^^^^^^^^^^^^^^ the trait `SampleUniform` is not implemented for `half::bf16`
[INFO] [stderr]      |                     |
[INFO] [stderr]      |                     required by a bound introduced by this call
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/bfloat.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct bf16(u16);
[INFO] [stderr]      | --------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr]      = note: required for `half::bf16` to implement `SampleBorrow<half::bf16>`
[INFO] [stderr] note: required by a bound in `Uniform::<X>::new`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:186:13
[INFO] [stderr]      |
[INFO] [stderr] 184  |     pub fn new<B1, B2>(low: B1, high: B2) -> Uniform<X>
[INFO] [stderr]      |            --- required by a bound in this associated function
[INFO] [stderr] 185  |     where
[INFO] [stderr] 186  |         B1: SampleBorrow<X> + Sized,
[INFO] [stderr]      |             ^^^^^^^^^^^^^^^ required by this bound in `Uniform::<X>::new`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::bf16: SampleBorrow<half::bf16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3663:76
[INFO] [stderr]      |
[INFO] [stderr] 3663 |                     rand::distributions::Uniform::new(bf16::from_f64(min), bf16::from_f64(max));
[INFO] [stderr]      |                     ---------------------------------                      ^^^^^^^^^^^^^^^^^^^ the trait `SampleUniform` is not implemented for `half::bf16`
[INFO] [stderr]      |                     |
[INFO] [stderr]      |                     required by a bound introduced by this call
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/bfloat.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct bf16(u16);
[INFO] [stderr]      | --------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr]      = note: required for `half::bf16` to implement `SampleBorrow<half::bf16>`
[INFO] [stderr] note: required by a bound in `Uniform::<X>::new`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:187:13
[INFO] [stderr]      |
[INFO] [stderr] 184  |     pub fn new<B1, B2>(low: B1, high: B2) -> Uniform<X>
[INFO] [stderr]      |            --- required by a bound in this associated function
[INFO] [stderr] ...
[INFO] [stderr] 187  |         B2: SampleBorrow<X> + Sized,
[INFO] [stderr]      |             ^^^^^^^^^^^^^^^ required by this bound in `Uniform::<X>::new`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::bf16: SampleUniform` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3663:21
[INFO] [stderr]      |
[INFO] [stderr] 3663 |                     rand::distributions::Uniform::new(bf16::from_f64(min), bf16::from_f64(max));
[INFO] [stderr]      |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `SampleUniform` is not implemented for `half::bf16`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/bfloat.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct bf16(u16);
[INFO] [stderr]      | --------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `Uniform`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:179:23
[INFO] [stderr]      |
[INFO] [stderr] 179  | pub struct Uniform<X: SampleUniform>(X::Sampler);
[INFO] [stderr]      |                       ^^^^^^^^^^^^^ required by this bound in `Uniform`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::bf16: SampleUniform` is not satisfied in `Uniform<half::bf16>`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3662:21
[INFO] [stderr]      |
[INFO] [stderr] 3662 |                 let uniform =
[INFO] [stderr]      |                     ^^^^^^^ within `Uniform<half::bf16>`, the trait `SampleUniform` is not implemented for `half::bf16`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/bfloat.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct bf16(u16);
[INFO] [stderr]      | --------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required because it appears within the type `Uniform<half::bf16>`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:179:12
[INFO] [stderr]      |
[INFO] [stderr] 179  | pub struct Uniform<X: SampleUniform>(X::Sampler);
[INFO] [stderr]      |            ^^^^^^^
[INFO] [stderr]      = note: all local variables must have a statically known size
[INFO] [stderr]      = help: unsized locals are gated as an unstable feature
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::bf16: SampleUniform` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3665:50
[INFO] [stderr]      |
[INFO] [stderr] 3665 |                     data.push(rng.sample::<bf16, _>(uniform))
[INFO] [stderr]      |                                                  ^ the trait `SampleUniform` is not implemented for `half::bf16`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/bfloat.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct bf16(u16);
[INFO] [stderr]      | --------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `Uniform`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:179:23
[INFO] [stderr]      |
[INFO] [stderr] 179  | pub struct Uniform<X: SampleUniform>(X::Sampler);
[INFO] [stderr]      |                       ^^^^^^^^^^^^^ required by this bound in `Uniform`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::f16: SampleBorrow<half::f16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3672:55
[INFO] [stderr]      |
[INFO] [stderr] 3672 |                     rand::distributions::Uniform::new(f16::from_f64(min), f16::from_f64(max));
[INFO] [stderr]      |                     --------------------------------- ^^^^^^^^^^^^^^^^^^ the trait `SampleUniform` is not implemented for `half::f16`
[INFO] [stderr]      |                     |
[INFO] [stderr]      |                     required by a bound introduced by this call
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/binary16.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct f16(u16);
[INFO] [stderr]      | -------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr]      = note: required for `half::f16` to implement `SampleBorrow<half::f16>`
[INFO] [stderr] note: required by a bound in `Uniform::<X>::new`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:186:13
[INFO] [stderr]      |
[INFO] [stderr] 184  |     pub fn new<B1, B2>(low: B1, high: B2) -> Uniform<X>
[INFO] [stderr]      |            --- required by a bound in this associated function
[INFO] [stderr] 185  |     where
[INFO] [stderr] 186  |         B1: SampleBorrow<X> + Sized,
[INFO] [stderr]      |             ^^^^^^^^^^^^^^^ required by this bound in `Uniform::<X>::new`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::f16: SampleBorrow<half::f16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3672:75
[INFO] [stderr]      |
[INFO] [stderr] 3672 |                     rand::distributions::Uniform::new(f16::from_f64(min), f16::from_f64(max));
[INFO] [stderr]      |                     ---------------------------------                     ^^^^^^^^^^^^^^^^^^ the trait `SampleUniform` is not implemented for `half::f16`
[INFO] [stderr]      |                     |
[INFO] [stderr]      |                     required by a bound introduced by this call
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/binary16.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct f16(u16);
[INFO] [stderr]      | -------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr]      = note: required for `half::f16` to implement `SampleBorrow<half::f16>`
[INFO] [stderr] note: required by a bound in `Uniform::<X>::new`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:187:13
[INFO] [stderr]      |
[INFO] [stderr] 184  |     pub fn new<B1, B2>(low: B1, high: B2) -> Uniform<X>
[INFO] [stderr]      |            --- required by a bound in this associated function
[INFO] [stderr] ...
[INFO] [stderr] 187  |         B2: SampleBorrow<X> + Sized,
[INFO] [stderr]      |             ^^^^^^^^^^^^^^^ required by this bound in `Uniform::<X>::new`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::f16: SampleUniform` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3672:21
[INFO] [stderr]      |
[INFO] [stderr] 3672 |                     rand::distributions::Uniform::new(f16::from_f64(min), f16::from_f64(max));
[INFO] [stderr]      |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `SampleUniform` is not implemented for `half::f16`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/binary16.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct f16(u16);
[INFO] [stderr]      | -------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `Uniform`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:179:23
[INFO] [stderr]      |
[INFO] [stderr] 179  | pub struct Uniform<X: SampleUniform>(X::Sampler);
[INFO] [stderr]      |                       ^^^^^^^^^^^^^ required by this bound in `Uniform`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::f16: SampleUniform` is not satisfied in `Uniform<half::f16>`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3671:21
[INFO] [stderr]      |
[INFO] [stderr] 3671 |                 let uniform =
[INFO] [stderr]      |                     ^^^^^^^ within `Uniform<half::f16>`, the trait `SampleUniform` is not implemented for `half::f16`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/binary16.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct f16(u16);
[INFO] [stderr]      | -------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required because it appears within the type `Uniform<half::f16>`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:179:12
[INFO] [stderr]      |
[INFO] [stderr] 179  | pub struct Uniform<X: SampleUniform>(X::Sampler);
[INFO] [stderr]      |            ^^^^^^^
[INFO] [stderr]      = note: all local variables must have a statically known size
[INFO] [stderr]      = help: unsized locals are gated as an unstable feature
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `half::f16: SampleUniform` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3674:49
[INFO] [stderr]      |
[INFO] [stderr] 3674 |                     data.push(rng.sample::<f16, _>(uniform))
[INFO] [stderr]      |                                                 ^ the trait `SampleUniform` is not implemented for `half::f16`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:216:1
[INFO] [stderr]      |
[INFO] [stderr] 216  | pub trait SampleUniform: Sized {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.6.0/src/binary16.rs:50:1
[INFO] [stderr]      |
[INFO] [stderr] 50   | pub struct f16(u16);
[INFO] [stderr]      | -------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `Uniform`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs:179:23
[INFO] [stderr]      |
[INFO] [stderr] 179  | pub struct Uniform<X: SampleUniform>(X::Sampler);
[INFO] [stderr]      |                       ^^^^^^^^^^^^^ required by this bound in `Uniform`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `StandardNormal: rand_distr::Distribution<half::bf16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3717:30
[INFO] [stderr]      |
[INFO] [stderr] 3717 |                 let normal = rand_distr::Normal::new(bf16::from_f64(mean), bf16::from_f64(std))
[INFO] [stderr]      |                              ^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_distr::Distribution<half::bf16>` is not implemented for `StandardNormal`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `rand_distr::Normal::<F>::new`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:147:33
[INFO] [stderr]      |
[INFO] [stderr] 147  | where F: Float, StandardNormal: Distribution<F>
[INFO] [stderr]      |                                 ^^^^^^^^^^^^^^^ required by this bound in `Normal::<F>::new`
[INFO] [stderr] ...
[INFO] [stderr] 156  |     pub fn new(mean: F, std_dev: F) -> Result<Normal<F>, Error> {
[INFO] [stderr]      |            --- required by a bound in this associated function
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `StandardNormal: rand_distr::Distribution<half::bf16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3717:30
[INFO] [stderr]      |
[INFO] [stderr] 3717 |                 let normal = rand_distr::Normal::new(bf16::from_f64(mean), bf16::from_f64(std))
[INFO] [stderr]      |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_distr::Distribution<half::bf16>` is not implemented for `StandardNormal`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `rand_distr::Normal`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:118:33
[INFO] [stderr]      |
[INFO] [stderr] 117  | pub struct Normal<F>
[INFO] [stderr]      |            ------ required by a bound in this struct
[INFO] [stderr] 118  | where F: Float, StandardNormal: Distribution<F>
[INFO] [stderr]      |                                 ^^^^^^^^^^^^^^^ required by this bound in `Normal`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `StandardNormal: rand_distr::Distribution<half::bf16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3717:30
[INFO] [stderr]      |
[INFO] [stderr] 3717 |                   let normal = rand_distr::Normal::new(bf16::from_f64(mean), bf16::from_f64(std))
[INFO] [stderr]      |  ______________________________^
[INFO] [stderr] 3718 | |                     .map_err(Error::wrap)?;
[INFO] [stderr]      | |_________________________________________^ the trait `rand_distr::Distribution<half::bf16>` is not implemented for `StandardNormal`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `rand_distr::Normal`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:118:33
[INFO] [stderr]      |
[INFO] [stderr] 117  | pub struct Normal<F>
[INFO] [stderr]      |            ------ required by a bound in this struct
[INFO] [stderr] 118  | where F: Float, StandardNormal: Distribution<F>
[INFO] [stderr]      |                                 ^^^^^^^^^^^^^^^ required by this bound in `Normal`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `StandardNormal: rand_distr::Distribution<half::bf16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3717:30
[INFO] [stderr]      |
[INFO] [stderr] 3717 |                   let normal = rand_distr::Normal::new(bf16::from_f64(mean), bf16::from_f64(std))
[INFO] [stderr]      |  ______________________________^
[INFO] [stderr] 3718 | |                     .map_err(Error::wrap)?;
[INFO] [stderr]      | |__________________________________________^ the trait `rand_distr::Distribution<half::bf16>` is not implemented for `StandardNormal`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `rand_distr::Normal`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:118:33
[INFO] [stderr]      |
[INFO] [stderr] 117  | pub struct Normal<F>
[INFO] [stderr]      |            ------ required by a bound in this struct
[INFO] [stderr] 118  | where F: Float, StandardNormal: Distribution<F>
[INFO] [stderr]      |                                 ^^^^^^^^^^^^^^^ required by this bound in `Normal`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: the method `sample` exists for struct `Normal<bf16>`, but its trait bounds were not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3720:38
[INFO] [stderr]      |
[INFO] [stderr] 3720 |                     data.push(normal.sample(&mut rng))
[INFO] [stderr]      |                                      ^^^^^^ method cannot be called on `Normal<bf16>` due to unsatisfied trait bounds
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- doesn't satisfy `_: Distribution<bf16>`
[INFO] [stderr] ...
[INFO] [stderr] 117  | pub struct Normal<F>
[INFO] [stderr]      | -------------------- doesn't satisfy `_: Distribution<bf16>`, `rand_distr::Normal<half::bf16>: RngCore` or `rand_distr::Normal<half::bf16>: rand::Rng`
[INFO] [stderr]      |
[INFO] [stderr]      = note: the following trait bounds were not satisfied:
[INFO] [stderr]              `StandardNormal: rand_distr::Distribution<half::bf16>`
[INFO] [stderr]              which is required by `rand_distr::Normal<half::bf16>: rand_distr::Distribution<half::bf16>`
[INFO] [stderr]              `rand_distr::Normal<half::bf16>: RngCore`
[INFO] [stderr]              which is required by `rand_distr::Normal<half::bf16>: rand::Rng`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `StandardNormal: rand_distr::Distribution<half::f16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3726:30
[INFO] [stderr]      |
[INFO] [stderr] 3726 |                 let normal = rand_distr::Normal::new(f16::from_f64(mean), f16::from_f64(std))
[INFO] [stderr]      |                              ^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_distr::Distribution<half::f16>` is not implemented for `StandardNormal`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `rand_distr::Normal::<F>::new`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:147:33
[INFO] [stderr]      |
[INFO] [stderr] 147  | where F: Float, StandardNormal: Distribution<F>
[INFO] [stderr]      |                                 ^^^^^^^^^^^^^^^ required by this bound in `Normal::<F>::new`
[INFO] [stderr] ...
[INFO] [stderr] 156  |     pub fn new(mean: F, std_dev: F) -> Result<Normal<F>, Error> {
[INFO] [stderr]      |            --- required by a bound in this associated function
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `StandardNormal: rand_distr::Distribution<half::f16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3726:30
[INFO] [stderr]      |
[INFO] [stderr] 3726 |                 let normal = rand_distr::Normal::new(f16::from_f64(mean), f16::from_f64(std))
[INFO] [stderr]      |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_distr::Distribution<half::f16>` is not implemented for `StandardNormal`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `rand_distr::Normal`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:118:33
[INFO] [stderr]      |
[INFO] [stderr] 117  | pub struct Normal<F>
[INFO] [stderr]      |            ------ required by a bound in this struct
[INFO] [stderr] 118  | where F: Float, StandardNormal: Distribution<F>
[INFO] [stderr]      |                                 ^^^^^^^^^^^^^^^ required by this bound in `Normal`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `StandardNormal: rand_distr::Distribution<half::f16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3726:30
[INFO] [stderr]      |
[INFO] [stderr] 3726 |                   let normal = rand_distr::Normal::new(f16::from_f64(mean), f16::from_f64(std))
[INFO] [stderr]      |  ______________________________^
[INFO] [stderr] 3727 | |                     .map_err(Error::wrap)?;
[INFO] [stderr]      | |_________________________________________^ the trait `rand_distr::Distribution<half::f16>` is not implemented for `StandardNormal`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `rand_distr::Normal`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:118:33
[INFO] [stderr]      |
[INFO] [stderr] 117  | pub struct Normal<F>
[INFO] [stderr]      |            ------ required by a bound in this struct
[INFO] [stderr] 118  | where F: Float, StandardNormal: Distribution<F>
[INFO] [stderr]      |                                 ^^^^^^^^^^^^^^^ required by this bound in `Normal`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the trait bound `StandardNormal: rand_distr::Distribution<half::f16>` is not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3726:30
[INFO] [stderr]      |
[INFO] [stderr] 3726 |                   let normal = rand_distr::Normal::new(f16::from_f64(mean), f16::from_f64(std))
[INFO] [stderr]      |  ______________________________^
[INFO] [stderr] 3727 | |                     .map_err(Error::wrap)?;
[INFO] [stderr]      | |__________________________________________^ the trait `rand_distr::Distribution<half::f16>` is not implemented for `StandardNormal`
[INFO] [stderr]      |
[INFO] [stderr] note: there are multiple different versions of crate `rand` in the dependency graph
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ^^^^^^^^^^^^^^^^^^^^^^^^^ this is the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3652:13
[INFO] [stderr]      |
[INFO] [stderr] 3652 |         use rand::prelude::*;
[INFO] [stderr]      |             ---- one version of crate `rand` used here, as a direct dependency of the current crate
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/convert.rs:3:5
[INFO] [stderr]      |
[INFO] [stderr] 3    | use float8::F8E4M3;
[INFO] [stderr]      |     ------ one version of crate `rand` used here, as a dependency of crate `half`
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- this type doesn't implement the required trait
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/distr/distribution.rs:35:1
[INFO] [stderr]      |
[INFO] [stderr] 35   | pub trait Distribution<T> {
[INFO] [stderr]      | ------------------------- this is the found trait
[INFO] [stderr]      = help: you can use `cargo tree` to explore your dependency tree
[INFO] [stderr] note: required by a bound in `rand_distr::Normal`
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:118:33
[INFO] [stderr]      |
[INFO] [stderr] 117  | pub struct Normal<F>
[INFO] [stderr]      |            ------ required by a bound in this struct
[INFO] [stderr] 118  | where F: Float, StandardNormal: Distribution<F>
[INFO] [stderr]      |                                 ^^^^^^^^^^^^^^^ required by this bound in `Normal`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: the method `sample` exists for struct `Normal<f16>`, but its trait bounds were not satisfied
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/diffusion_rs_common-0.1.0/src/core/cpu_backend/mod.rs:3729:38
[INFO] [stderr]      |
[INFO] [stderr] 3729 |                     data.push(normal.sample(&mut rng))
[INFO] [stderr]      |                                      ^^^^^^ method cannot be called on `Normal<f16>` due to unsatisfied trait bounds
[INFO] [stderr]      |
[INFO] [stderr]     ::: /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/rand_distr-0.4.3/src/normal.rs:41:1
[INFO] [stderr]      |
[INFO] [stderr] 41   | pub struct StandardNormal;
[INFO] [stderr]      | ------------------------- doesn't satisfy `_: Distribution<f16>`
[INFO] [stderr] ...
[INFO] [stderr] 117  | pub struct Normal<F>
[INFO] [stderr]      | -------------------- doesn't satisfy `_: Distribution<f16>`, `rand_distr::Normal<half::f16>: RngCore` or `rand_distr::Normal<half::f16>: rand::Rng`
[INFO] [stderr]      |
[INFO] [stderr]      = note: the following trait bounds were not satisfied:
[INFO] [stderr]              `StandardNormal: rand_distr::Distribution<half::f16>`
[INFO] [stderr]              which is required by `rand_distr::Normal<half::f16>: rand_distr::Distribution<half::f16>`
[INFO] [stderr]              `rand_distr::Normal<half::f16>: RngCore`
[INFO] [stderr]              which is required by `rand_distr::Normal<half::f16>: rand::Rng`
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0277, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0277`.
[INFO] [stderr] error: could not compile `diffusion_rs_common` (lib) due to 20 previous errors
[INFO] running `Command { std: "docker" "inspect" "a60f8e655caad3446eaa4bdd115ac0c3ee3a8572767e0b2aa907ecbdfe084ada", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "a60f8e655caad3446eaa4bdd115ac0c3ee3a8572767e0b2aa907ecbdfe084ada", kill_on_drop: false }`
[INFO] [stdout] a60f8e655caad3446eaa4bdd115ac0c3ee3a8572767e0b2aa907ecbdfe084ada