Skip to content
  1. Mar 11, 2021
  2. Mar 10, 2021
    • Emilio Cota's avatar
      [mlir] Add polynomial approximation for math::Log2 · c0891706
      Emilio Cota authored
      ```
      name                     old cpu/op  new cpu/op  delta
      BM_mlir_Log2_f32/10       134ns ±15%    45ns ± 4%  -66.39%  (p=0.000 n=20+17)
      BM_mlir_Log2_f32/100     1.03µs ±16%  0.12µs ±10%  -88.78%  (p=0.000 n=20+18)
      BM_mlir_Log2_f32/1k      10.3µs ±16%   0.7µs ± 5%  -93.24%  (p=0.000 n=20+17)
      BM_mlir_Log2_f32/10k      104µs ±15%     7µs ±14%  -93.25%  (p=0.000 n=20+20)
      BM_eigen_s_Log2_f32/10   95.3ns ±17%  90.9ns ± 6%     ~     (p=0.228 n=20+18)
      BM_eigen_s_Log2_f32/100   907ns ± 3%   911ns ± 6%     ~     (p=0.539 n=16+20)
      BM_eigen_s_Log2_f32/1k   9.88µs ± 4%  9.85µs ± 3%     ~     (p=0.790 n=16+17)
      BM_eigen_s_Log2_f32/10k   105µs ±10%   110µs ±16%     ~     (p=0.459 n=16+20)
      BM_eigen_v_Log2_f32/10   32.5ns ±31%  33.9ns ±14%   +4.31%  (p=0.028 n=17+20)
      BM_eigen_v_Log2_f32/100   176ns ± 8%   180ns ± 7%   +2.19%  (p=0.045 n=16+17)
      BM_eigen_v_Log2_f32/1k   1.44µs ± 4%  1.50µs ± 9%   +3.91%  (p=0.001 n=16+17)
      BM_eigen_v_Log2_f32/10k  14.5µs ±10%  15.0µs ± 8%   +3.92%  (p=0.002 n=16+19)
      ```
      
      Reviewed By: ezhulenev
      
      Differential Revision: https://reviews.llvm.org/D98282
      c0891706
    • Dave Lee's avatar
      Revert "[cmake] Enable -Werror=return-type" · 683e8972
      Dave Lee authored
      This reverts commit ce94a161.
      683e8972
    • Stephen Kelly's avatar
      [AST] Add generator for source location introspection · d627a27d
      Stephen Kelly authored
      Generate a json file containing descriptions of AST classes and their
      public accessors which return SourceLocation or SourceRange.
      
      Use the JSON file to generate a C++ API and implementation for accessing
      the source locations and method names for accessing them for a given AST
      node.
      
      This new API can be used to implement 'srcloc' output in clang-query:
      
        http://ce.steveire.com/z/m_kTIo
      
      In this first version of this feature, only the accessors for Stmt
      classes are generated, not Decls, TypeLocs etc.  Those can be added
      after this change is reviewed, as this change is mostly about
      infrastructure of these code generators.
      
      Differential Revision: https://reviews.llvm.org/D93164
      d627a27d
    • Jan Kratochvil's avatar
    • Aditya Kumar's avatar
      6976255f
    • Wael Yehia's avatar
      llvm-lto: default Relocation Model should be selected by the TargetMachine. · be646e31
      Wael Yehia authored
      Right now, the createTargetMachine function in LTOBackend.cpp (used by llvm-lto, and other components) selects the default Relocation Model when none is specified in the module.
      Other components (such as opt and llc) that construct a TargetMachine delegate the decision on the default value to the polymorphic TargetMachine's constructor.
      
      This commit aligns llvm-lto with other components.
      
      Reviewed By: daltenty, fhahn
      
      Differential Revision: https://reviews.llvm.org/D97507
      be646e31
Loading