Skip to content
  1. Mar 05, 2020
  2. Jan 26, 2020
  3. Jan 13, 2020
  4. Jan 11, 2020
  5. Dec 24, 2019
  6. Dec 23, 2019
  7. Dec 18, 2019
  8. Nov 21, 2019
  9. Sep 08, 2019
  10. Sep 02, 2019
  11. Aug 10, 2019
  12. Jun 20, 2019
    • Alex Zinenko's avatar
      Factor Region::getUsedValuesDefinedAbove into Transforms/RegionUtils · 4291ae74
      Alex Zinenko authored
      Arguably, this function is only useful for transformations and should not
      pollute the main IR.  Also make sure it accepts a the resulting container
      by-reference instead of returning it.
      
      PiperOrigin-RevId: 253622981
      4291ae74
    • Alex Zinenko's avatar
      Convert a nest affine loops to a GPU kernel · ee6f84ae
      Alex Zinenko authored
      This converts entire loops into threads/blocks.  No check on the size of the
      block or grid, or on the validity of parallelization is performed, it is under
      the responsibility of the caller to strip-mine the loops and to perform the
      dependence analysis before calling the conversion.
      
      PiperOrigin-RevId: 253189268
      ee6f84ae
  13. May 20, 2019
    • Geoffrey Martin-Noble's avatar
      Rename VectorOrTensorType to ShapedType · 090662c5
      Geoffrey Martin-Noble authored
          This is in preparation for making it also support/be a parent class of MemRefType. MemRefs have similar shape/rank/element semantics and it would be useful to be able to use these same utilities for them.
      
          This CL should not change any semantics and only change variables, types, string literals, and comments. In follow-up CLs I will prepare all callers to handle MemRef types or remove their dependence on ShapedType.
      
          Discussion/Rationale in https://groups.google.com/a/tensorflow.org/forum/#!topic/mlir/cHLoyfGu8y8
      
      --
      
      PiperOrigin-RevId: 248476449
      090662c5
    • Stella Laurenzo's avatar
      Upstreaming Quantizer tool (part 2). · 79265887
      Stella Laurenzo authored
          This adds some additional core types and utilities, notably the constraint analysis graph (CAG) structures, associated metadata and configuration policy object base class.
      
          The CAG is not particularly memory efficient as it stands now. I had started some work to turn it into a form that could be better managed by a bump pointer allocator but abandoned that for now in favor of having something that does semantically what I was going for as a starting point.
      
      --
      
      PiperOrigin-RevId: 248413133
      79265887
    • Jacques Pienaar's avatar
      Remove unnecessary C++ specifier in CPP files. NFC. · cde4d5a6
      Jacques Pienaar authored
          These are only required in .h files to disambiguate between C and C++ header files.
      
      --
      
      PiperOrigin-RevId: 248219135
      cde4d5a6
  14. May 06, 2019
    • Lei Zhang's avatar
      [TableGen] Support multiple variadic operands/results · 6749c21d
      Lei Zhang authored
          Certain ops can have multiple variadic operands/results, e.g., `tf.DynamicStitch`.
          Even if an op has only one variadic operand/result, it is not necessarily the
          very last one, e.g., `tf.RaggedGather`. This CL enhances TableGen subsystem to be
          able to represent such cases.
      
          In order to deduce the operand/result value range for each variadic operand,
          currently we only support variadic operands/results all of the same size.
          So two new traits, `SameVariadicOperandSize` and `SameVariadicResultSize` are
          introduced.
      
      --
      
      PiperOrigin-RevId: 245310628
      6749c21d
  15. Apr 18, 2019
    • Smit Hinsu's avatar
      NFC: Simplify named attribute in TableGen generators · 0047ef97
      Smit Hinsu authored
          Now, op attribute names don't have '.' in their names so the special handling for it
          can be removed. Attributes for functions still have dialect prefix with '.' as separator but TableGen does not deal with functions.
      
          TESTED with existing unit tests
      
      --
      
      PiperOrigin-RevId: 243287462
      0047ef97
  16. Mar 30, 2019
  17. Mar 29, 2019
Loading