Skip to content

Commit

Permalink
[MLIR] Add subf and rsqrt EDSC intrinsics
Browse files Browse the repository at this point in the history
[MLIR] Add subf and rsqrt EDSC intrinsics

NOTE: Please merge it when ready.

Reviewed By: nicolasvasilache

Differential Revision: https://reviews.llvm.org/D88039
  • Loading branch information
ezhulenev authored and Nicolas Vasilache committed Sep 22, 2020
1 parent a0c1dcc commit 0304c6d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mlir/include/mlir/Dialect/StandardOps/EDSC/Intrinsics.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ using std_mulf = ValueBuilder<MulFOp>;
using std_memref_cast = ValueBuilder<MemRefCastOp>;
using std_re = ValueBuilder<ReOp>;
using std_ret = OperationBuilder<ReturnOp>;
using std_rsqrt = ValueBuilder<RsqrtOp>;
using std_select = ValueBuilder<SelectOp>;
using std_load = ValueBuilder<LoadOp>;
using std_splat = ValueBuilder<SplatOp>;
using std_store = OperationBuilder<StoreOp>;
using std_subf = ValueBuilder<SubFOp>;
using std_subi = ValueBuilder<SubIOp>;
using std_sub_view = ValueBuilder<SubViewOp>;
using std_tanh = ValueBuilder<TanhOp>;
Expand Down

0 comments on commit 0304c6d

Please sign in to comment.