Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for BadHop (0.09 sec)

  1. src/cmd/api/testdata/src/pkg/p3/golden.txt

    pkg p3, func BadHop(int, int, int) (bool, bool, *ThirdBase, *ThirdBase, error)
    pkg p3, method (*ThirdBase) GoodPlayer() (int, int, int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 29 00:45:45 UTC 2013
    - 166 bytes
    - Viewed (0)
  2. src/cmd/api/testdata/src/pkg/p3/p3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p3
    
    type ThirdBase struct{}
    
    func (tb *ThirdBase) GoodPlayer() (i, j, k int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 310 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize_layout.cc

    struct TransposeCommuteWithPad : public OpRewritePattern<stablehlo::PadOp> {
      using OpRewritePattern<stablehlo::PadOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(stablehlo::PadOp pad_op,
                                    PatternRewriter& rewriter) const override {
        Value pad_input = pad_op.getOperand();
        RankedTensorType pad_type = pad_op.getType().cast<RankedTensorType>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      while (pad_op || cast_op) {
        if (pad_op) {
          auto block_arg_num = GetBlockArgNum(pad_op.getInput());
          if (block_arg_num.has_value()) return block_arg_num;
          next_input = pad_op.getInput();
        } else {
          auto block_arg_num = GetBlockArgNum(cast_op.getX());
          if (block_arg_num.has_value()) return block_arg_num;
          next_input = cast_op.getX();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

            stb_op, "result for current op has more than 1 use");
      }
    
      // Pad op.
      TF::PadOp pad_op;
      ElementsAttr pad_attr;
      if (llvm::isa<TF::PadOp>(consumer_op)) {
        pad_op = llvm::cast<TF::PadOp>(consumer_op);
        if (!pad_op.getResult().hasOneUse()) {
          return rewriter.notifyMatchFailure(
              pad_op, "result for current op has more than 1 use");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

    LogicalResult MergeConsecutivePad(mhlo::PadOp pad_op,
                                      PatternRewriter &rewriter) {
      // Fail for non-static shapes
      if (!pad_op.getOperand().getType().hasStaticShape() ||
          !pad_op.getResult().getType().hasStaticShape() ||
          !pad_op.getPaddingValue().getType().hasStaticShape()) {
        return rewriter.notifyMatchFailure(pad_op, "dynamic shapes not supported");
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          // Add an extra tfl.pad_op if there are explicit padding values. This
          // extra pad op will allow us to always set the `padding` attribute of
          // the newly created tfl.conv_2d op as "VALID".
          TFL::PadOp pad_op =
              CreateTflPadOp(op.getLoc(), padding_attr, input_value, rewriter);
          input_value = pad_op.getResult();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. docs/bigdata/README.md

    - [https://hadoop.apache.org/docs/current/hadoop-aws/tools/hadoop-aws/index.html](https://hadoop.apache.org/docs/current/hadoop-aws/tools/hadoop-aws/index.html)
    - [https://hadoop.apache.org/docs/r3.1.1/hadoop-aws/tools/hadoop-aws/committers.html](https://hadoop.apache.org/docs/r3.1.1/hadoop-aws/tools/hadoop-aws/committers.html)
    
    Once the config changes are applied, proceed to restart **Hadoop** services.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/gpu_hardware.cc

    TAC_REGISTER_GPU_OP(MaximumOp, CreateBasicOpNoCost);
    TAC_REGISTER_GPU_OP(MinimumOp, CreateBasicOpNoCost);
    TAC_REGISTER_GPU_OP(MeanOp, CreateBasicOpNoCost);
    TAC_REGISTER_GPU_OP(CustomOp, CreateBasicOpNoCost);
    TAC_REGISTER_GPU_OP(PadOp, CreateBasicOpNoCost);
    TAC_REGISTER_GPU_OP(PowOp, CreateBasicOpNoCost);
    TAC_REGISTER_GPU_OP(PReluOp, CreateBasicOpNoCost);
    TAC_REGISTER_GPU_OP(ReluOp, CreateBasicOpNoCost);
    TAC_REGISTER_GPU_OP(Relu6Op, CreateBasicOpNoCost);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      llvm::SmallVector<int64_t, 8> slice_begins;
      llvm::SmallVector<int64_t, 8> slice_sizes;
    
      for (auto p : llvm::zip(pad_op.getOperand().getType().getShape(),
                              pad_op.getEdgePaddingLow().getValues<APInt>(),
                              pad_op.getEdgePaddingHigh().getValues<APInt>())) {
        const int64_t input_dim_size = std::get<0>(p);
        int64_t pad_output_dim_size = input_dim_size;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top