Skip to content
Snippets Groups Projects
  1. Nov 26, 2020
    • Bhatu's avatar
      Support for Split operation · f416af1e
      Bhatu authored
      We support splitting of a tensor along an axis into n pieces, where n
      has to be a constant.
      Eg:
        Split(Tensor of shape(5,30), splits=3, axis=1)
        returns 3 tensors of shape(5,10) each.
      
      Currently we do not suport splitting into tensors of specified shape
      (num_or_size_splits) though that functionality will be added later.
      
      We also do not support splitting into n pieces where n is a runtime
      value because we do not support run-time code generation yet.
      
      This also adds support in the frontend for an op to return multiple
      values.
      f416af1e
  2. Nov 25, 2020
    • Bhatu's avatar
      Implement SquaredDifference · b54294e8
      Bhatu authored
      We do this as a simplification on the tensorflow graph itself.
      We transform SquaredDifference(a,b) into (a-b) * (a-b).
      b54294e8
    • Bhatu's avatar
      Remove double quotes from attributes · 39e78075
      Bhatu authored
      Remove the "" from attributes while parsing the graph def itself.
      eg: "\"dtype\"" -> "dtype"
      So we can directly refer to the attributes without adding double quotes to them.
      39e78075
  3. Aug 15, 2020
  4. Jul 02, 2020
    • Nishant Kumar's avatar
      Updated compiler changes (#62) · c10e8f5b
      Nishant Kumar authored
      * With new compiler changes
      
      * After backend interface cleanup
      
      * Interface cleaned up
      
      * Removed funcSSCons and FLOAT_PRECISION fix
      
      * funcSSCons right fix1
      
      * Cleanup of several things ; Athos and EzPC changes for 2PC
      
      * Residual changes
      
      * More changes
      
      * One left file
      Unverified
      c10e8f5b
  5. Sep 18, 2019
  6. Sep 13, 2019
Loading