cupid icon indicating copy to clipboard operation
cupid copied to clipboard

Get information about the x86 and x86_64 processor

Results 5 cupid issues
Sort by recently updated
recently updated
newest added

This adds support for `no_std` by swapping references to `std` with `core`. There are also some project related things: 1. The changelog still needs to be updated Closes #25.

I would really like to be able to use this crate in a `no_std` environment, but it doesn't support it. From what I can see, this crate doesn't actually use...

enhancement

See this: https://support.amd.com/TechDocs/25481.pdf Note: In ExtendedProcessorSignature the ecx register lzcnt (5th bit) value denotes ABM support in AMD CPUs (and also on Intel CPUS, lzcnt is the only instruction they...

bug

It turns out that not all `x86` cpus have the `cpuid` instruction, so one should probably check whether the CPU supports it before using it by checking whether the ID...

The `cupid` library returns whether the CPU `avx` flag is enabled or not. This only denotes whether the CPU supports AVX, but not wether an user-space program can use it....