123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- #
- # Copyright 2019 The FATE Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- import functools
- import math
- import sys
- import numpy as np
- class FixedPointNumber(object):
- """Represents a float or int fixedpoint encoding;.
- """
- BASE = 16
- LOG2_BASE = math.log(BASE, 2)
- FLOAT_MANTISSA_BITS = sys.float_info.mant_dig
- Q = 293973345475167247070445277780365744413 ** 2
- def __init__(self, encoding, exponent, n=None, max_int=None):
- if n is None:
- self.n = FixedPointNumber.Q
- self.max_int = self.n // 2
- else:
- self.n = n
- if max_int is None:
- self.max_int = self.n // 2
- else:
- self.max_int = max_int
- self.encoding = encoding
- self.exponent = exponent
- @classmethod
- def calculate_exponent_from_precision(cls, precision):
- exponent = math.floor(math.log(precision, cls.BASE))
- return exponent
- @classmethod
- def encode(cls, scalar, n=None, max_int=None, precision=None, max_exponent=None):
- """return an encoding of an int or float.
- """
- # Calculate the maximum exponent for desired precision
- exponent = None
- # Too low value preprocess;
- # avoid "OverflowError: int too large to convert to float"
- if np.abs(scalar) < 1e-200:
- scalar = 0
- if n is None:
- n = cls.Q
- max_int = n // 2
- if precision is None:
- if isinstance(scalar, int) or isinstance(scalar, np.int16) or \
- isinstance(scalar, np.int32) or isinstance(scalar, np.int64):
- exponent = 0
- elif isinstance(scalar, float) or isinstance(scalar, np.float16) \
- or isinstance(scalar, np.float32) or isinstance(scalar, np.float64):
- flt_exponent = math.frexp(scalar)[1]
- lsb_exponent = cls.FLOAT_MANTISSA_BITS - flt_exponent
- exponent = math.floor(lsb_exponent / cls.LOG2_BASE)
- else:
- raise TypeError("Don't know the precision of type %s."
- % type(scalar))
- else:
- exponent = cls.calculate_exponent_from_precision(precision)
- if max_exponent is not None:
- exponent = max(max_exponent, exponent)
- int_fixpoint = int(round(scalar * pow(cls.BASE, exponent)))
- if abs(int_fixpoint) > max_int:
- raise ValueError(f"Integer needs to be within +/- {max_int},but got {int_fixpoint},"
- f"basic info, scalar={scalar}, base={cls.BASE}, exponent={exponent}"
- )
- return cls(int_fixpoint % n, exponent, n, max_int)
- def decode(self):
- """return decode plaintext.
- """
- if self.encoding >= self.n:
- # Should be mod n
- raise ValueError('Attempted to decode corrupted number')
- elif self.encoding <= self.max_int:
- # Positive
- mantissa = self.encoding
- elif self.encoding >= self.n - self.max_int:
- # Negative
- mantissa = self.encoding - self.n
- else:
- raise OverflowError(f'Overflow detected in decode number, encoding: {self.encoding},'
- f'{self.exponent}'
- f' {self.n}')
- return mantissa * pow(self.BASE, -self.exponent)
- def increase_exponent_to(self, new_exponent):
- """return FixedPointNumber: new encoding with same value but having great exponent.
- """
- if new_exponent < self.exponent:
- raise ValueError('New exponent %i should be greater than'
- 'old exponent %i' % (new_exponent, self.exponent))
- factor = pow(self.BASE, new_exponent - self.exponent)
- new_encoding = self.encoding * factor % self.n
- return FixedPointNumber(new_encoding, new_exponent, self.n, self.max_int)
- def __align_exponent(self, x, y):
- """return x,y with same exponent
- """
- if x.exponent < y.exponent:
- x = x.increase_exponent_to(y.exponent)
- elif x.exponent > y.exponent:
- y = y.increase_exponent_to(x.exponent)
- return x, y
- def __truncate(self, a):
- scalar = a.decode()
- return FixedPointNumber.encode(scalar, n=self.n, max_int=self.max_int)
- def __add__(self, other):
- if isinstance(other, FixedPointNumber):
- return self.__add_fixedpointnumber(other)
- elif type(other).__name__ == "PaillierEncryptedNumber":
- return other + self.decode()
- else:
- return self.__add_scalar(other)
- def __radd__(self, other):
- return self.__add__(other)
- def __sub__(self, other):
- if isinstance(other, FixedPointNumber):
- return self.__sub_fixedpointnumber(other)
- elif type(other).__name__ == "PaillierEncryptedNumber":
- return (other - self.decode()) * -1
- else:
- return self.__sub_scalar(other)
- def __rsub__(self, other):
- if type(other).__name__ == "PaillierEncryptedNumber":
- return other - self.decode()
- x = self.__sub__(other)
- x = -1 * x.decode()
- return self.encode(x, n=self.n, max_int=self.max_int)
- def __rmul__(self, other):
- return self.__mul__(other)
- def __mul__(self, other):
- if isinstance(other, FixedPointNumber):
- return self.__mul_fixedpointnumber(other)
- elif type(other).__name__ == "PaillierEncryptedNumber":
- return other * self.decode()
- else:
- return self.__mul_scalar(other)
- def __truediv__(self, other):
- if isinstance(other, FixedPointNumber):
- scalar = other.decode()
- else:
- scalar = other
- return self.__mul__(1 / scalar)
- def __rtruediv__(self, other):
- res = 1.0 / self.__truediv__(other).decode()
- return FixedPointNumber.encode(res, n=self.n, max_int=self.max_int)
- def __lt__(self, other):
- x = self.decode()
- if isinstance(other, FixedPointNumber):
- y = other.decode()
- else:
- y = other
- if x < y:
- return True
- else:
- return False
- def __gt__(self, other):
- x = self.decode()
- if isinstance(other, FixedPointNumber):
- y = other.decode()
- else:
- y = other
- if x > y:
- return True
- else:
- return False
- def __le__(self, other):
- x = self.decode()
- if isinstance(other, FixedPointNumber):
- y = other.decode()
- else:
- y = other
- if x <= y:
- return True
- else:
- return False
- def __ge__(self, other):
- x = self.decode()
- if isinstance(other, FixedPointNumber):
- y = other.decode()
- else:
- y = other
- if x >= y:
- return True
- else:
- return False
- def __eq__(self, other):
- x = self.decode()
- if isinstance(other, FixedPointNumber):
- y = other.decode()
- else:
- y = other
- if x == y:
- return True
- else:
- return False
- def __ne__(self, other):
- x = self.decode()
- if isinstance(other, FixedPointNumber):
- y = other.decode()
- else:
- y = other
- if x != y:
- return True
- else:
- return False
- def __add_fixedpointnumber(self, other):
- if self.n != other.n:
- other = self.encode(other.decode(), n=self.n, max_int=self.max_int)
- x, y = self.__align_exponent(self, other)
- encoding = (x.encoding + y.encoding) % self.n
- return FixedPointNumber(encoding, x.exponent, n=self.n, max_int=self.max_int)
- def __add_scalar(self, scalar):
- encoded = self.encode(scalar, n=self.n, max_int=self.max_int)
- return self.__add_fixedpointnumber(encoded)
- def __sub_fixedpointnumber(self, other):
- if self.n != other.n:
- other = self.encode(other.decode(), n=self.n, max_int=self.max_int)
- x, y = self.__align_exponent(self, other)
- encoding = (x.encoding - y.encoding) % self.n
- return FixedPointNumber(encoding, x.exponent, n=self.n, max_int=self.max_int)
- def __sub_scalar(self, scalar):
- scalar = -1 * scalar
- return self.__add_scalar(scalar)
- def __mul_fixedpointnumber(self, other):
- return self.__mul_scalar(other.decode())
- def __mul_scalar(self, scalar):
- val = self.decode()
- z = val * scalar
- z_encode = FixedPointNumber.encode(z, n=self.n, max_int=self.max_int)
- return z_encode
- def __abs__(self):
- if self.encoding <= self.max_int:
- # Positive
- return self
- elif self.encoding >= self.n - self.max_int:
- # Negative
- return self * -1
- def __mod__(self, other):
- return FixedPointNumber(self.encoding % other, self.exponent, n=self.n, max_int=self.max_int)
- class FixedPointEndec(object):
- def __init__(self, n=None, max_int=None, precision=None, *args, **kwargs):
- if n is None:
- self.n = FixedPointNumber.Q
- self.max_int = self.n // 2
- else:
- self.n = n
- if max_int is None:
- self.max_int = self.n // 2
- else:
- self.max_int = max_int
- self.precision = precision
- @classmethod
- def _transform_op(cls, tensor, op):
- from fate_arch.session import is_table
- def _transform(x):
- arr = np.zeros(shape=x.shape, dtype=object)
- view = arr.view().reshape(-1)
- x_array = x.view().reshape(-1)
- for i in range(arr.size):
- view[i] = op(x_array[i])
- return arr
- if isinstance(tensor, (int, np.int16, np.int32, np.int64,
- float, np.float16, np.float32, np.float64,
- FixedPointNumber)):
- return op(tensor)
- if isinstance(tensor, np.ndarray):
- z = _transform(tensor)
- return z
- elif is_table(tensor):
- f = functools.partial(_transform)
- return tensor.mapValues(f)
- else:
- raise ValueError(f"unsupported type: {type(tensor)}")
- def _encode(self, scalar):
- return FixedPointNumber.encode(scalar,
- n=self.n,
- max_int=self.max_int,
- precision=self.precision)
- def _decode(self, number):
- return number.decode()
- def _truncate(self, number):
- scalar = number.decode()
- return FixedPointNumber.encode(scalar, n=self.n, max_int=self.max_int)
- def encode(self, float_tensor):
- return self._transform_op(float_tensor, op=self._encode)
- def decode(self, integer_tensor):
- return self._transform_op(integer_tensor, op=self._decode)
- def truncate(self, integer_tensor, *args, **kwargs):
- return self._transform_op(integer_tensor, op=self._truncate)
|