Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for input1 (0.38 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(input2->type, Eq(TensorType_INT8));
    
      // Check if the quantization params of the minimum/maximum inputs match
      // after requantization
      EXPECT_THAT(input1->quantization->scale, Eq(input2->quantization->scale));
      EXPECT_THAT(input1->quantization->zero_point,
                  Eq(input2->quantization->zero_point));
    
      // Check the input quantization params match the output ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = opSummary # " operator";
    
      let description = [{
        Performs convolution operation on inputs.
    
        Inputs:
          `inputs[0]`: required: the input activation tensor
          `inputs[1]`: required: the filter weight tensor
          `inputs[2]`: optional: the bias tensor
      }];
    
      let results = (outs TFL_TensorOf<[F32, QI8, QUI8, QI16]>:$output);
    
      let hasOptions = 0b1;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // L2Loss is lowered using the formula,
    // L2Loss(input) = Sum(input * input) / 2
    
    // TODO(hinsu): Support unranked tensors once b/144593778 is resolved to not
    // cause result type mismatch.
    def LowerL2LossOp :
      Pat<(TF_L2LossOp AnyRankedTensor:$input),
          (TF_DivOp
            (TF_SumOp (TF_MulOp $input, $input),
                      (TF_ConstOp (GetAllAxes $input)),
                      /*keep_dims=*/ConstBoolAttrFalse),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Slice the first 'size' rows from the input tensorlist.
        auto guard = OpBuilder::InsertionGuard(*rewriter);
        auto inputs = branch_func.getFunctionType().getInputs();
        Block *block = rewriter->createBlock(
            &branch_func.getBody(), branch_func.begin(), inputs,
            SmallVector<Location>(inputs.size(), branch_func.getLoc()));
    
        Value scalar_zero = CreateI32SplatConst(loc, rewriter, {}, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            outputContains("ON CI")
    
            when: "changing the value of the input doesn't invalidate cache"
            executer.withEnvironmentVars(ci: "2")
            configurationCacheRun("-Dci=2", "build")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("ON CI")
    
            when: "removing the input invalidates cache"
            configurationCacheRun("build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

            (MHLO_CompositeOp:$composite
              (variadic $inputs),
              ConstantStrAttr<StrAttr, "aten.gelu.default">, $attrs, $_, $_),
            (TFL_GeluOp $inputs, ConstBoolAttrFalse),
            [(IsStrCompositeAttribute<"approximate", "none"> $attrs)]>;
    
    def LegalizeCompositeApproximateAtenGELU : Pat<
            (MHLO_CompositeOp:$composite
              (variadic $inputs),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            }
        })
        return properties
    }
    
    
    private
    fun collectRegisteredInputsOf(task: Task): List<RegisteredProperty> {
    
        val properties = mutableListOf<RegisteredProperty>()
    
        (task.inputs as TaskInputsInternal).visitRegisteredProperties(object : PropertyVisitor {
    
            override fun visitInputFileProperty(
                propertyName: String,
                optional: Boolean,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

        def "configuration inputs are tracked during task graph serialization"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and: "a project that has a provider having undeclared configuration inputs, which is linked to a task"
            buildFile("""
                abstract class MyTask extends DefaultTask {
                    @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

                                    PatternRewriter& rewriter) const override {
        auto input = op.getOptional();
        auto elementType = getElementTypeOrSelf(input.getType());
        if (isa<TF::VariantType>(elementType)) {
          // We can only replace OptionalGetValue after the inputs have been
          // replaced.
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // TensorFlow.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreatePrepareTpuComputationForTfExportPass();
    
    // Rewrites ops that require quantized inputs or outputs to ops that allow
    // non-quantized inputs and outputs.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLowerQuantizedPass();
    
    // Reorders ops so ops of the same dialect are next to each other.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top