Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 191 for output_types (0.24 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized.mlir

          func.return %act : tensor<*x${output_type}>
        }
    
        parameters[
          {"quantized_ops": ["${main_op}"], "act_func": "internal_requantize_no_activation_fn", "output_type": "!tf_type.qint8"},
          {"quantized_ops": ["${main_op}", "Relu"], "act_func": "internal_requantize_and_relu_fn", "output_type": "!tf_type.qint8"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 01:13:58 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/SimpleReport.java

        private final String name;
        private final Describable displayName;
        private final OutputType outputType;
    
        public SimpleReport(String name, Describable displayName, OutputType outputType) {
            this.name = name;
            this.displayName = displayName;
            this.outputType = outputType;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:05:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

    LogicalResult ConstantTensorOp::verify() {
      ConstantTensorOp op = *this;
      auto input_type = op.getArg().getType();
      auto output_type = op.getOut().getType();
    
      if (auto output_tensor_type = output_type.dyn_cast<TFRTensorType>()) {
        return success();
      }
    
      auto output_tensor_type = output_type.dyn_cast<RankedTensorType>();
      if (!output_tensor_type || !output_tensor_type.hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstyleTest.groovy

                reports.xml.outputType == Report.OutputType.FILE
                !reports.html.required.get()
                !reports.html.outputLocation.isPresent()
                reports.html.outputType == Report.OutputType.FILE
                !reports.sarif.required.get()
                !reports.sarif.outputLocation.isPresent()
                reports.sarif.outputType == Report.OutputType.FILE
                !ignoreFailures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/InternalTransformers.java

        private static class CastingTransformer<O, I> implements InternalTransformer<O, I> {
            final Class<O> outputType;
    
            public CastingTransformer(Class<O> outputType) {
                this.outputType = outputType;
            }
    
            @Override
            public O transform(I input) {
                return Cast.cast(outputType, input);
            }
        }
    
        public static <T> InternalTransformer<String, T> asString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

         *
         * @param outputType The type to cast the input to
         * @param object The object to be cast (must not be {@code null})
         * @param <O> The type to be cast to
         * @param <I> The type of the object to be vast
         * @return The input object, cast to the output type
         */
        public static <O, I> O cast(Class<O> outputType, I object) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/internal/Transformers.java

        }
    
        private static class CastingTransformer<O, I> implements Transformer<O, I> {
            final Class<O> outputType;
    
            public CastingTransformer(Class<O> outputType) {
                this.outputType = outputType;
            }
    
            @Override
            public O transform(I input) {
                return Cast.cast(outputType, input);
            }
        }
    
        public static <T> Transformer<String, T> asString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                                                  RankedTensorType output_type,
                                                  int64_t axis) {
      const auto outer_dims = output_type.getShape().take_front(axis);
      const int64_t outer_size = std::accumulate(
          outer_dims.begin(), outer_dims.end(), 1, std::multiplies<int64_t>());
    
      const auto base_inner_dims = output_type.getShape().drop_front(axis + 1);
      const int64_t base_inner_size =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. build/pause/Makefile

    	docker buildx build --provenance=false --sbom=false --pull --output=type=${OUTPUT_TYPE} --platform ${OS}/$(ARCH) \
    		-t $(IMAGE):$(TAG)-${OS}-$(ARCH) --build-arg BASE=${BASE} --build-arg ARCH=$(ARCH) .
    	touch $@
    
    .container-windows-$(ARCH): $(foreach binary, ${BIN}, bin/${binary}-${OS}-${ARCH})
    	docker buildx build --provenance=false --sbom=false --pull --output=type=${OUTPUT_TYPE} --platform ${OS}/$(ARCH) \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // before broadcasting.
        if (operand_type.getRank() < output_type.getRank()) {
          input = InsertExpandDimsOp(op, rewriter, input, output_type.getRank());
        }
    
        SmallVector<int32_t> broadcast_shape =
            CastI64ArrayToI32(output_type.getShape()).value();
        TensorType broadcast_shape_type =
            output_type.cloneWith({output_type.getRank()}, rewriter.getI32Type());
        auto broadcast_shape_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
Back to top