Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,271 for OP (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

          isa<TF::TPUReplicatedInputOp>(op) || isa<TF::TPUReplicatedOutputOp>(op) ||
          isa<TF::TPUPartitionedInputOp>(op) ||
          isa<TF::TPUPartitionedInputV2Op>(op) ||
          isa<TF::TPUPartitionedOutputOp>(op) ||
          isa<TF::TPUPartitionedOutputV2Op>(op))
        return true;
      if (IsMustBeXlaOp(op, metadata_map) && IsMustNotBeXlaOp(op)) {
        // TODO(b/269195256#comment19) change the warning for Identity op to error
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      LogicalResult match(stablehlo::ReshapeOp op) const override {
        return success(IsOpFullyQuantized(op));
      }
    
      void rewrite(stablehlo::ReshapeOp op,
                   PatternRewriter& rewriter) const override {
        rewriter.replaceOpWithNewOp<TFL::ReshapeOp>(
            op, op.getOperand(),
            CreateI32ShapeConstantOp(op.getResult().getType(), op->getLoc(),
                                     rewriter));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

      rewriter.replaceAllUsesWith(op.getResult(), output_transpose_op);
    }
    
    // "Climbs up" the `op` if `op` is a `BraodcastInDimOp` and returns the defining
    // op of its operand. Returns `op` otherwise. May return `nullptr` when the
    // `BroadcastInDimOp`'s operand is a block argument.
    absl::Nullable<Operation*> SkipUpwardsOptionalBroadcastInDimOp(
        absl::Nonnull<Operation*> op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

                  {static_cast<int64_t>(op->base_dilations.size())},
                  op->base_dilations, builder)));
        }
        if (!op->window_dilations.empty()) {
          attributes.emplace_back(builder.getNamedAttr(
              "window_dilations",
              BuildVhloTensorV1Attr(
                  {static_cast<int64_t>(op->window_dilations.size())},
                  op->window_dilations, builder)));
        }
        if (!op->padding.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

                                                                          rewriter))
        return success();
      return failure();
    }
    
    LogicalResult ConvertTFMatMulOp::matchAndRewrite(
        Operation* op, PatternRewriter& rewriter) const {
      auto tf_matmul_op = cast<TF::MatMulOp>(op);
      auto lhs = op->getOperand(0);
      auto rhs = op->getOperand(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

        markUnknownOpDynamicallyLegal([this](Operation *op) {
          // Consider UQ op legal if it has a CastOp next to the qint input/output.
          if (IsTFUniformQuantizedOp(op)) {
            return IsTFUniformQuantizedOpLegal(op);
          } else if (auto cast_op = llvm::dyn_cast<TF::CastOp>(op)) {
            return IsCastOpLegal(cast_op);
          } else if (auto const_op = llvm::dyn_cast<TF::ConstOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

    namespace {
    
    // Returns true if the given op is TF/XLA communication op in the old bridge.
    bool IsCommunicationOp(Operation* op) {
      return isa<TF::XlaHostComputeOp, TF::XlaSendToHostOp, TF::XlaRecvFromHostOp>(
          op);
    }
    
    // Returns true if the given op is one of ops supported to have communication
    // subcomputation in the TF/XLA bridge.
    bool SupportsCommunicationComputation(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    			op = op[:len(op)-1] + "CC"
    		}
    	}
    	// laid out the instruction
    	switch inst.Op {
    	default: // dst, sA, sB, ...
    		switch len(args) {
    		case 0:
    			return op
    		case 1:
    			return fmt.Sprintf("%s %s", op, args[0])
    		case 2:
    			if inst.Op == COPY || inst.Op == PASTECC {
    				return op + " " + args[0] + "," + args[1]
    			}
    			return op + " " + args[1] + "," + args[0]
    		case 3:
    			if reverseOperandOrder(inst.Op) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		}
    		if rno <= WZR {
    			op = op + "W"
    		} else if rno >= S0 && rno <= S31 {
    			op = "F" + op + "S"
    		} else if rno >= D0 && rno <= D31 {
    			op = "F" + op + "D"
    		} else if rno >= Q0 && rno <= Q31 {
    			op = "F" + op + "Q"
    		}
    		op = op + suffix
    		if inst.Op.String() == "STP" {
    			return op + " " + args[0] + ", " + args[1]
    		} else {
    			return op + " " + args[1] + ", " + args[0]
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

              UpdateSideEffectsByResourceId(entry.second, op_side_effect_map_[op]);
            }
          }
        }
      }
    
      // Collects op-based side effects for `op` in `op_side_effect_map_[op]`.
      void CollectOpSideEffects(Operation* op) {
        if (!MayHaveSideEffect(op)) return;
        // Skip following ops to avoid that every island, graph and function is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top