Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Hinsu (0.14 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      return builder->create<TF::CastOp>(loc, type, x, truncate);
    }
    }  // namespace
    
    //===----------------------------------------------------------------------===//
    // The actual PrepareTF Pass.
    //
    // TODO(hinsu): Add and use TensorFlow dialect ops for the ops created in this
    // pass.
    namespace {
    #define GEN_PASS_DEF_PREPARETFPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

                      $filter_width, $filter_height, TFL_AF_None)),
        (TFL_MaxPool2DOp $input, $padding, $stride_w, $stride_h,
            $filter_width, $filter_height, ActFnAttr),
        [(HasOneUse $pool_out)]>;
    }
    
    // TODO(hinsu): Also fuse ops corresponding to SIGN_BIT fused
    // activation functions.
    // Currently we're not fusing tanh, sigmoid, hard_swish and other activations
    // those cannot be simply translated into clamping.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                          TF::TensorListPushBackOp, TF::TensorListReserveOp,
                          TF::TensorListStackOp, TF::TensorListResizeOp,
                          TF::TensorListConcatV2Op>();
      // TODO(hinsu): Use TFLite constant op for constants.
      target.addLegalOp<arith::ConstantOp>();
      target.addLegalOp<func::FuncOp>();
      target.addDynamicallyLegalOp<func::ReturnOp>(is_legal);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

      LogicalResult matchAndRewrite(Operation *op,
                                    PatternRewriter &rewriter) const override {
        auto addn_op = cast<AddNOp>(op);
    
        // TODO(hinsu): Support variant with TensorList type. tf.AddV2 doesn't
        // support variant type so variant types require special handling.
        if (mlir::isa<VariantType>(getElementTypeOrSelf(addn_op.getType())))
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top