[package]
edition = "2021"
rust-version = "1.85"
name = "softgpu-functional"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SoftGPU Phase 6 CPU functional executor for disclosed SoftGPU Functional IR (not gfx1201 ISA)"
homepage = "https://github.com/thanos/SoftGPU"
readme = "README.md"
keywords = [
"gpu",
"emulation",
"functional",
"softgpu",
]
categories = [
"development-tools",
"emulators",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/thanos/SoftGPU"
[lib]
name = "softgpu_functional"
path = "src/lib.rs"
[[test]]
name = "fake_programs"
path = "tests/fake_programs.rs"
[[test]]
name = "phase6_functional"
path = "tests/phase6_functional.rs"
[[test]]
name = "phase7_semantics"
path = "tests/phase7_semantics.rs"
[[test]]
name = "phase8_sanitize"
path = "tests/phase8_sanitize.rs"
[[test]]
name = "phase9_debug"
path = "tests/phase9_debug.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies]