Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for getresuid (0.24 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      // Omit any bias and requantize ops as `tfl.{gemm_op}` outputs a
      // fused `qi8` type.
      rewriter.replaceAllUsesWith(uniform_quantize_op->getResult(0),
                                  op->getResult(0));
      return op->getResult(0).getType().cast<TensorType>().clone(
          new_result_quantized_type);
    }
    
    // Matches kernel dimension numbers, ranks of input and output and constant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        auto resize = rewriter.create<TFL::ResizeNearestNeighborOp>(
            gather_nd_first->getLoc(), transpose_second.getResult().getType(),
            reshape_op.getResult(), size_const_op.getResult(), false, false);
    
        rewriter.replaceOp(transpose_second, resize.getResult());
        return success();
      }
    };
    
    // Fuse Add with proceeding FullyConnected.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            loc, transposed_output_2d_shape, transposed_image_2d_op.getResult(),
            transposed_kernel_2d_op.getResult(), window_strides_2d, padding_2d,
            lhs_dilation_2d, rhs_dilation_2d, window_reversal_2d, dnums_2d,
            conv_op.getFeatureGroupCount(), conv_op.getBatchGroupCount(),
            conv_op.getPrecisionConfigAttr());
    
        OpResult conv2d_output = conv2d_op->getResult(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            Operation* parent = yield->getParentOp();
            add_to_worklist(parent->getResult(use.getOperandNumber()));
            continue;
          }
          // TODO(jpienaar): This can be generalized.
          if (isa<IdentityOp, IdentityNOp, StopGradientOp>(use.getOwner())) {
            add_to_worklist(use.getOwner()->getResult(use.getOperandNumber()));
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      auto shuffled_paddings_op = builder.create<TF::ConstOp>(getLoc(), values);
    
      // Use new paddings.
      setOperand(1, shuffled_paddings_op);
    
      // Change the result type.
      getResult().setType(ShuffleRankedTensorType(getResult().getType(),
                                                  ReversePermutation(permutation))
                              .cast<TensorType>());
    
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // Replace original concat with an unary op.
      OperationState new_unary_op_state(loc, first_arg_op->getName().getStringRef(),
                                        concat_unary_operands.getResult(),
                                        op.getResult().getType(),
                                        ArrayRef<NamedAttribute>());
      Operation* new_unary_op = rewriter.create(new_unary_op_state);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

            ba.replaceAllUsesWith(value);
            cond_block.getArgument(arg_no).replaceAllUsesWith(value);
    
            // This could be relaxed and casts inserted.
            if (while_op.getResult(arg_no).getType() == value.getType())
              while_op.getResult(arg_no).replaceAllUsesWith(value);
          }
        }
    
        // The While ops operands and result types need to match
        SmallVector<Value, 4> new_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // when used as element types.
    class TFL_TFTypesWithSameBits<int i, int j, int num> :
      And<[
        Or<[CPred<"getElementTypeOrSelf($_op.getResult(" # i # ")).isa<mlir::TF::Quint" # num # "Type>()">,
            CPred<"getElementTypeOrSelf($_op.getResult(" # i # ")).isUnsignedInteger(" # num # ")">]>,
        Or<[CPred<"getElementTypeOrSelf($_op.getOperand(" # j # ")).isa<mlir::TF::Quint" # num # "Type>()">,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // Collect mapping of OutputTensor to associated block arg.
        arg_nodes_to_values.try_emplace({arg_node.node, arg_node.index}, arg_def);
        island->getResult(0).replaceAllUsesWith(arg_def);
        // Erase control outputs from feed.
        auto control_uses = island->getResult(1).getUses();
        for (auto& control_use : llvm::make_early_inc_range(control_uses))
          control_use.getOwner()->eraseOperand(control_use.getOperandNumber());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. okhttp-android/src/main/baseline-prof.txt

    HSPLkotlinx/coroutines/CancellableContinuationImpl;->getExceptionalResult$kotlinx_coroutines_core(Ljava/lang/Object;)Ljava/lang/Throwable;
    HSPLkotlinx/coroutines/CancellableContinuationImpl;->getResult()Ljava/lang/Object;
    HSPLkotlinx/coroutines/CancellableContinuationImpl;->getSuccessfulResult$kotlinx_coroutines_core(Ljava/lang/Object;)Ljava/lang/Object;
    HSPLkotlinx/coroutines/CancellableContinuationImpl;->initCancellability()V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
Back to top