aocl-utils 0.1.0

Safe Rust wrappers for AOCL-Utils (CPU identification, threading helpers)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Safe wrappers for AOCL-Utils — AMD CPU identification, CPU-feature
//! flag queries, thread pinning, and library version reporting.

#![warn(missing_debug_implementations)]
#![cfg_attr(docsrs, feature(doc_cfg))]

pub mod cpuid;
pub mod threads;
pub mod version;

pub use aocl_error::{Error, Result};