mirror of
https://github.com/luxfi/crypto.git
synced 2026-07-27 01:54:50 +00:00
12 lines
355 B
Go
12 lines
355 B
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
// Package gpu provides GPU-accelerated SLH-DSA operations.
|
|
// Returns false for Available() when GPU hardware is not present.
|
|
package gpu
|
|
|
|
// Available returns whether GPU acceleration is available.
|
|
func Available() bool {
|
|
return false
|
|
}
|