Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Tf_AnyOp (0.08 sec)

  1. tensorflow/compiler/mlir/python/mlir_wrapper/ops.cc

                  mlir::Value y) -> mlir::Operation* {
                 return opb.create<mlir::TF::AddV2Op>(loc, x, y).getOperation();
               });
    
      py::class_<mlir::TF::AnyOp>(m, "Tf_AnyOp")
          .def("create",
               [](mlir::OpBuilder& opb, mlir::Location loc, mlir::Value input,
                  mlir::Value reduction_indices,
                  bool keep_dims = false) -> mlir::Operation* {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

    class Tf_AddV2Op:
        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: Value, arg2: Value) -> Operation: ...
    
    class Tf_AnyOp:
        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: Value, arg2: Value, arg3: bool) -> Operation: ...
    
    class Tf_ConstOp:
        def __init__(self, *args, **kwargs) -> None: ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top