Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for api_type (0.24 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.cc

      if (IsList()) {
        return "AddInputList";
      } else {
        return "AddInput";
      }
    }
    
    std::vector<string> ArgView::SetterArgs() const { return {VariableName()}; }
    
    bool ArgView::IsList() const { return arg_.arg_type().is_list(); }
    
    int ArgView::Position() const { return arg_.position(); }
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.cc

    OpArgumentView::OpArgumentView(string type, string var, string def)
        : type_name_(type), variable_name_(var), default_value_(def) {}
    
    OpArgumentView::OpArgumentView(ArgSpec arg)
        : type_name_(ArgTypeView(arg.arg_type()).TypeName()),
          variable_name_(ArgView(arg).VariableName()) {}
    
    OpArgumentView::OpArgumentView(AttrSpec attr)
        : type_name_(AttrView(attr).VariableType()),
          variable_name_(AttrView(attr).VariableName()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize_layout.cc

      LogicalResult matchAndRewrite(stablehlo::PadOp pad_op,
                                    PatternRewriter& rewriter) const override {
        Value pad_input = pad_op.getOperand();
        RankedTensorType pad_type = pad_op.getType().cast<RankedTensorType>();
    
        auto transpose_op = pad_input.getDefiningOp<stablehlo::TransposeOp>();
        if (!transpose_op || !transpose_op->hasOneUse()) return failure();
    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/lite/quantization/tools/tflite_op_coverage_spec_getters_gen.cc

                               std::vector<std::string> &result,
                               InputDataType act_type, const bool per_axis,
                               const bool is_toco) {
      std::list<std::string> required_types = {
          GetTypeToStringRepresentation().at("F32")};
    
      switch (act_type) {
        case InputDataType::INT8: {
          required_types.push_back(GetTypeToStringRepresentation().at("QI8"));
          break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

                                                 Type arg_type,
                                                 mlir::Operation *symbol_op) {
      auto expected_type = GetBoundInputArgTypeFor(symbol_op);
      if (!expected_type) return failure();
    
      if (arg_type != expected_type) {
        return op_for_diagnostics->emitError()
               << "bound input with type " << arg_type << " expected to have type "
               << expected_type;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

          continue;
        }
    
        // Make a copy of current argument and append it to the end of the list if
        // the pattern isn't found.
        Type arg_type = arg.getType();
        input_types.push_back(arg_type);
        auto new_arg = bb.addArgument(arg_type, loc);
        arg.replaceAllUsesWith(new_arg);
        arg.dropAllUses();
        bb.eraseArgument(0);
      }
    
      // Edit the return ops and remove the dequantize ops in place.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/cc/quantization_unit_loc.h

    // QuantizationUnitLoc uses CallSiteLoc as the base class so it can be printed
    // with AsmPrinter and used to set the node name in MLIR to GraphDef exporter.
    // The callee is named as `node_name@func_name` with child loc named as
    // `op_type` while the caller is the quantization unit.
    class QuantizationUnitLoc : public CallSiteLoc {
     public:
      using QuantizationUnit =
          tensorflow::quantization::UnitWiseQuantizationSpec::QuantizationUnit;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 02:39:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_unified_experimental.cc

                               TF_Status* s) {
      unwrap(o)->outputs.push_back(unwrap(tensor));
    }
    
    void TF_AbstractOpSetOpType(TF_AbstractOp* op, const char* const op_type,
                                TF_Status* s) {
      tsl::Set_TF_Status_from_Status(
          s, unwrap(op)->Reset(op_type,
                               /*raw_device_name=*/nullptr));
    }
    
    void TF_AbstractOpSetOpName(TF_AbstractOp* op, const char* const op_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 10:15:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    // classification for API Priority and Fairness
    type PriorityAndFairnessClassification struct {
    	FlowSchemaName    string
    	FlowSchemaUID     apitypes.UID
    	PriorityLevelName string
    	PriorityLevelUID  apitypes.UID
    }
    
    // waitingMark tracks requests waiting rather than being executed
    var waitingMark = &requestWatermark{
    	phase: epmetrics.WaitingPhase,
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder_test.go

    								SdsConfig: &core.ConfigSource{
    									ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
    										ApiConfigSource: &core.ApiConfigSource{
    											ApiType:                   core.ApiConfigSource_GRPC,
    											SetNodeOnFirstMessageOnly: true,
    											TransportApiVersion:       core.ApiVersion_V3,
    											GrpcServices: []*core.GrpcService{
    												{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top