nbytes

LightPlainMatrix.nbytes
경량 행렬 평문의 메모리 크기를 표시합니다.
  • 아웃풋
    • nbytes, int
import numpy as np

from desilofhe import Engine

engine = Engine(slot_count=64)

message = np.arange(64 * 64).reshape(64, 64)
light_plain_matrix = engine.encode_to_light_plain_matrix(message)
nbytes = light_plain_matrix.nbytes