Files
AetherForge/agent/miner/pyopencl_stub.go

12 lines
248 B
Go

//go:build !linux
package miner
import "crypto-miner-agent/config"
func DetectCUDA() bool { return false }
func DetectPyOpenCL() bool { return false }
func StartPyOpenCLTier(_ config.RuntimeConfig) error {
return ErrMethodUnavailable
}