| Crates.io | satellite-gpu |
| lib.rs | satellite-gpu |
| version | 0.1.0 |
| created_at | 2026-01-18 05:15:34.680664+00 |
| updated_at | 2026-01-18 05:15:34.680664+00 |
| description | GPU acceleration bindings for Satellite solver |
| homepage | |
| repository | |
| max_upload_size | |
| id | 2051811 |
| size | 44,209 |
GPU acceleration bindings for Satellite SAT solver.
use satellite_gpu::{GpuWorker, GpuStatus};
let worker = GpuWorker::new()?;
if worker.is_available() {
worker.submit_bcp(&clauses, num_clauses, &assignments)?;
worker.sync();
if let Some(result) = worker.poll_result()? {
println!("Conflict: {}", result.has_conflict);
}
}
cuda - Enable NVIDIA CUDA supporthip - Enable AMD HIP supportMIT