#soft-float #safe-wrapper #api-bindings #nan

softfloat-wrapper

a safe wrapper of Berkeley SoftFloat based on softfloat-sys

10 releases

0.3.4 Jun 26, 2023
0.3.3 Mar 16, 2021
0.3.2 Jan 15, 2021
0.2.0 Nov 8, 2020
0.1.1 Aug 20, 2020

#164 in Math

Download history 56/week @ 2024-01-17 2/week @ 2024-02-21 6/week @ 2024-02-28 1/week @ 2024-03-06 25/week @ 2024-03-13 666/week @ 2024-03-20

699 downloads per month

MIT/Apache

76KB
2K SLoC

softfloat-wrapper

softfloat-wrapper is a safe wrapper of Berkeley SoftFloat based on softfloat-sys.

Actions Status Crates.io Docs.rs

Usage

[dependencies]
softfloat-wrapper = "0.3.4"

Example

use softfloat_wrapper::{Float, F16, RoundingMode};

fn main() {
    let a = 0x1234;
    let b = 0x1479;

    let a = F16::from_bits(a);
    let b = F16::from_bits(b);
    let d = a.add(b, RoundingMode::TiesToEven);

    let a = f32::from_bits(a.to_f32(RoundingMode::TiesToEven).to_bits());
    let b = f32::from_bits(b.to_f32(RoundingMode::TiesToEven).to_bits());
    let d = f32::from_bits(d.to_f32(RoundingMode::TiesToEven).to_bits());

    println!("{} + {} = {}", a, b, d);
}

Feature

Some architectures are supported:

  • 8086
  • 8086-SSE (default)
  • ARM-VFPv2
  • ARM-VFPv2-DefaultNaN
  • RISCV

You can specify architecture through feature like below:

[dependencies.softfloat-wrapper]
version = "0.3.4"
default-features = false
features = ["riscv"]

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2MB
~27K SLoC