Verifying the Output
In this article we continue our quick start series. We assume that you are following from the previous article.
8. Deserialize and Display the Result
We will deserialize the decrypted tensor and output the result.
Explanation:
We deserialize the plaintext tensor from the response data.
Flattening the tensor allows us to traverse all elements easily.
We use
get_float_from_plaintext
to extract float values from the plaintexts.The results are displayed in matrix form.
We output the durations for both multiplication and decryption.
Last updated