mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 19:44:57 -05:00
34 lines
988 B
C++
34 lines
988 B
C++
// Part of the Concrete Compiler Project, under the BSD3 License with Zama
|
|
// Exceptions. See
|
|
// https://github.com/zama-ai/concrete-compiler-internal/blob/main/LICENSE.txt
|
|
// for license information.
|
|
|
|
#include "concretelang/Runtime/context.h"
|
|
#include "concretelang/Common/Error.h"
|
|
#include "concretelang/Runtime/seeder.h"
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
|
|
LweKeyswitchKey64 *
|
|
get_keyswitch_key_u64(mlir::concretelang::RuntimeContext *context) {
|
|
return context->get_ksk();
|
|
}
|
|
|
|
LweBootstrapKey64 *
|
|
get_bootstrap_key_u64(mlir::concretelang::RuntimeContext *context) {
|
|
return context->get_bsk();
|
|
}
|
|
|
|
FftFourierLweBootstrapKey64 *
|
|
get_fft_fourier_bootstrap_key_u64(mlir::concretelang::RuntimeContext *context) {
|
|
return context->get_fft_fourier_bsk();
|
|
}
|
|
|
|
DefaultEngine *get_engine(mlir::concretelang::RuntimeContext *context) {
|
|
return context->get_default_engine();
|
|
}
|
|
|
|
FftEngine *get_fft_engine(mlir::concretelang::RuntimeContext *context) {
|
|
return context->get_fft_engine();
|
|
}
|