Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 191 for output_types (0.39 sec)

  1. cluster/gce/windows/testonly/user-profile.psm1

    # Kubernetes releases depend on the release structure remaining stable.
    
    
    #Function to create the new local user first
    function New-LocalUser
    {
        [CmdletBinding()]
        [Alias()]
        [OutputType([int])]
        Param
        (
            # Param1 help description
            [Parameter(Mandatory=$true,
                       ValueFromPipelineByPropertyName=$true,
                       Position=0)]
            $userName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

            outputs.fileProperties*.propertyName == ['$1']
            outputs.fileProperties*.propertyFiles*.files.flatten() == [file("a")]
            outputs.fileProperties*.outputFile == [file("a")]
            outputs.fileProperties*.outputType == [FILE]
        }
    
        def "can register output file with property name"() {
            when:
            outputs.file("a").withPropertyName("prop")
            then:
            outputs.files.files == files('a')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  3. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/TaskGeneratedReport.java

        }
    
        public TaskGeneratedReport(final String name, OutputType outputType, final Task task) {
            super(name, new Describable() {
                @Override
                public String getDisplayName() {
                    return calculateDisplayName(name, task);
                }
            }, outputType);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/quantize_variables.cc

          auto *value_op = assign_variable_op.getValue().getDefiningOp();
          auto dq_op = dyn_cast_or_null<DequantizeOp>(value_op);
          if (dq_op) {
            Type output_type = dq_op.getInput().getType();
            auto qtype = quant::QuantizedType::getQuantizedElementType(output_type);
            if (qtype == quant::QuantizedType::getQuantizedElementType(ref_qtype)) {
              // Same quantization parameters, remove it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h

    // to the `output_buffer`. Both `model_buffer` and `output_buffer` should be a
    // valid FlatBuffer format for Model supported by TFLite.
    //
    // The `input_type`, `output_type` and `inference_type` can be float32 / qint8 /
    // int8 / int16.
    //
    // Returns a partially quantized model if `fully_quantize` is false. Returns a
    // non-OK status if the quantization fails.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/SingleFileReport.java

        @Override
        @OutputFile
        RegularFileProperty getOutputLocation();
    
        /**
         * Always returns {@link Report.OutputType#FILE}
         *
         * @return {@link Report.OutputType#FILE}
         */
        @Override
        OutputType getOutputType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/perception_ops_utils.cc

          flow_type.getRank() != 4) {
        return func_.emitWarning() << "Flow should be a 4D float tensor";
      }
    
      auto output_type = mlir::dyn_cast_or_null<RankedTensorType>(
          func_.getFunctionType().getResult(0));
      if (!output_type || !output_type.getElementType().isF32() ||
          output_type.getRank() != 4) {
        return func_.emitWarning() << "Output should be a 4D float tensor";
      }
    
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

               << "'hash_seed' attribute is not set or not an array";
      }
      auto output_type = GetResultType(func, 0);
      if (!output_type || !mlir::isa<FloatType>(output_type.getElementType()) ||
          !RankEquals(output_type, 2)) {
        return func.emitError() << "Output should be a 2D float tensor.";
      }
      if (output_type.getDimSize(1) != hash_seed.size()) {
        return func.emitError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

          for (Type& type : llvm::make_range(&state_->types[original_size],
                                             state_->types.end())) {
            Type output_type;
            TF_RETURN_IF_ERROR(AddRef(type, &output_type));
            type = output_type;
          }
        }
      }
      for (auto& it : attrs_) state_->addAttribute(it.first(), it.second);
      *state = state_.get();
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.cc

                   << ", output_inference_type: "
                   << tflite::EnumNameTensorType(output_type) << "\n";
      mlir::Builder mlir_builder(&context);
      mlir::Type input_mlir_type =
          tflite::ConvertElementType(input_type, mlir_builder);
      mlir::Type output_mlir_type =
          tflite::ConvertElementType(output_type, mlir_builder);
    
      if (fully_quantize) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top