is_cuda

BootstrapKey.is_cuda
부트스트랩 키가 GPU에 저장되어 있으면 True이고, 그렇지 않으면 False입니다.
  • 아웃풋
    • boolean
from desilofhe import Engine

gpu_engine = Engine(use_bootstrap=True, mode="gpu")
gpu_secret_key = gpu_engine.create_secret_key()
gpu_bootstrap_key = gpu_engine.create_bootstrap_key(gpu_secret_key)

assert gpu_bootstrap_key.is_cuda

cpu_engine = Engine(use_bootstrap=True, mode="cpu")
cpu_secret_key = cpu_engine.create_secret_key()
cpu_bootstrap_key = cpu_engine.create_bootstrap_key(cpu_secret_key)

assert not cpu_bootstrap_key.is_cuda