Skip to content

Commit

Permalink
chore(hlapi): stabilize FheTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeul-zama committed Nov 25, 2024
1 parent baf161e commit 8fce54f
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tfhe/src/high_level_api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,23 +130,23 @@ pub enum Device {

#[derive(Copy, Clone, PartialEq, Eq, Debug)]
pub enum FheTypes {
Bool,
Bool = 0,
Uint2,
Uint4,
Uint4 = 1,
Uint6,
Uint8,
Uint8 = 2,
Uint10,
Uint12,
Uint14,
Uint16,
Uint32,
Uint64,
Uint128,
Uint160,
Uint256,
Uint512,
Uint1024,
Uint2048,
Uint16 = 3,
Uint32 = 4,
Uint64 = 5,
Uint128 = 6,
Uint160 = 7,
Uint256 = 8,
Uint512 = 9,
Uint1024 = 10,
Uint2048 = 11,
Int2,
Int4,
Int6,
Expand Down

0 comments on commit 8fce54f

Please sign in to comment.