Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,493 for OP (0.02 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/gnu.go

    // This form typically matches the syntax defined in the ARM Reference Manual.
    func GNUSyntax(inst Inst) string {
    	var buf bytes.Buffer
    	op := inst.Op.String()
    	op = saveDot.Replace(op)
    	op = strings.Replace(op, ".", "", -1)
    	op = strings.Replace(op, "_dot_", ".", -1)
    	op = strings.ToLower(op)
    	buf.WriteString(op)
    	sep := " "
    	for i, arg := range inst.Args {
    		if arg == nil {
    			break
    		}
    		text := gnuArg(&inst, i, arg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/raise_custom_ops.cc

      fn.walk([&](Operation *op) {
        // Skips already imported ops that are imported as CustomTfOp.
        if (op->getParentOfType<CustomTfOp>()) return;
        if (llvm::isa<TFL::CustomTfOp>(op) || llvm::isa<TFL::CustomOp>(op)) return;
    
        std::string op_name = op->getName().getIdentifier().str();
        // Wrap the operation, if
        // - the op is targeted explicitly, or
        // - the op isn't registered when there are no target list.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/validators.h

    // these predicates.
    
    // Returns true if the given TensorFlow op does not have a `data_format`
    // attribute (then default to "NHWC"), or its `data_format` attribute is "NHWC".
    inline bool TFDataFormatIsNHWC(Operation *op) {
      auto attr = op->getAttrOfType<StringAttr>("data_format");
      return !attr || attr.getValue() == "NHWC";
    }
    
    // Returns true if the given TensorFlow op does not have a `data_format`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/image_grad.cc

          scope, grad_inputs[0], op.input(1), op.input(2), image_shape, input_type,
          CropAndResizeGradImage::Method(method)));
      grad_outputs->push_back(CropAndResizeGradBoxes(
          scope, grad_inputs[0], op.input(0), op.input(1), op.input(2)));
      grad_outputs->push_back(NoGradient());
      grad_outputs->push_back(NoGradient());
      return scope.status();
    }
    
    REGISTER_GRADIENT_OP("CropAndResize", CropAndResizeGradHelper);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 11 00:29:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/end2end/back2back_fake_quant.pbtxt

        }
      }
    }
    node {
      name: "sequential/quant_dense/MatMul/ReadVariableOp"
      op: "Identity"
      input: "sequential/quant_dense/MatMul/ReadVariableOp/resource"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    }
    node {
      name: "sequential/quant_dense/MatMul/kquant/FakeQuantWithMinMaxVars/ReadVariableOp/resource"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 25.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

      llvm::DenseMap<SymbolRefAttr, int> called_indexes;
    
      WalkResult result = module.walk([&](stablehlo::CustomCallOp op) {
        if (!IsTfFuncCustomCall(op)) {
          return WalkResult::advance();
        }
    
        auto backend_config =
            op->getAttrOfType<DictionaryAttr>(kTfBackendConfigAttrName);
        if (!backend_config) {
          op->emitOpError() << "is missing attribute '" << kTfBackendConfigAttrName
                            << "'";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/graph-as-function.mlir

    // CHECK-NEXT:   name: "args_0"
    // CHECK-NEXT:   op: "_Arg"
    // CHECK:          i: 0
    // CHECK:      node {
    // CHECK-NEXT:   name: "args_1"
    // CHECK-NEXT:   op: "_Arg"
    // CHECK:          i: 1
    // CHECK:      node {
    // CHECK-NEXT:   name: "args_2"
    // CHECK-NEXT:   op: "_Arg"
    // CHECK:          i: 2
    // CHECK:      node {
    // CHECK-NEXT:   name: "args_3"
    // CHECK-NEXT:   op: "_Arg"
    // CHECK:          i: 3
    // CHECK:      node {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

      for (Operation* outer : ops) {
        outer->walk([&](Operation* op) {
          all_operations.insert(op);
          for (Value result : op->getResults()) {
            all_internal_results.insert(result);
          }
          // We treat block arguments of inner blocks as "results", too, in
          // the sense that they're values produced inside this op.
          for (Region& region : op->getRegions()) {
            for (Block& block : region.getBlocks()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

    Operation* GetUserIfOnlyOne(Operation* op) {
      if (op->getNumResults() != 1) return nullptr;
      auto result = op->getResult(0);
      if (!result.hasOneUse()) return nullptr;
      return (*result.getUses().begin()).getOwner();
    }
    
    // Gets operation providing value for the given operand of given operation
    // if the given operation is the only user.
    Operation* GetInputOpWithOneUse(Operation* op, int opr_num) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.td

    def IsPrecisionEmpty :
      Constraint<CPred<"IsPrecisionEmpty($0)">>;
    
    // Creates Einsum Op from XlaDotV2 Op by generating equation.
    def CreateEinsumOpFromXlaDotV2Op : NativeCodeCall<
      "CreateEinsumOpFromXlaDotV2Op($_builder, $_loc, $0...)">;
    
    // Convert XlaDotV2 Op to Einsum Op with above two functions.
    def ConvertXlaDotV2OpToEinsumOp : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top