mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
23 lines
698 B
Plaintext
23 lines
698 B
Plaintext
#include "boost/outcome.h"
|
|
#include "concretelang/ClientLib/ClientLambda.h"
|
|
#include "concretelang/ClientLib/KeySetCache.h"
|
|
#include "concretelang/ClientLib/Types.h"
|
|
#include "concretelang/Common/Error.h"
|
|
|
|
namespace call_2t_1s_with_header {
|
|
namespace client {
|
|
|
|
namespace extract {
|
|
using namespace concretelang::clientlib;
|
|
using concretelang::error::StringError;
|
|
using extract_t = TypedClientLambda<scalar_out, tensor1_in, tensor1_in>;
|
|
static const std::string name = "extract";
|
|
|
|
static outcome::checked<extract_t, StringError>
|
|
load(std::string outputLib)
|
|
{ return extract_t::load(name, outputLib); }
|
|
} // namespace extract
|
|
|
|
} // namespace client
|
|
} // namespace call_2t_1s_with_header
|