Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for input1 (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeArgMax : Pat<(TF_ArgMaxOp $input, $dim),
                             (TFL_ArgMaxOp $input, $dim)>;
    def LegalizeArgMin : Pat<(TF_ArgMinOp $input, $dim),
                             (TFL_ArgMinOp $input, $dim)>;
    
    def LegalizeBroadcastTo : Pat<(TF_BroadcastToOp $input, $dim),
                                  (TFL_BroadcastToOp $input, $dim)>;
    
    def LegalizeCeil : Pat<(TF_CeilOp $arg), (TFL_CeilOp $arg)>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

            }
    
            public <T, U> List<U> transformAll(Collection<T> inputs, ValueOrTransformProvider<T, U> valueOrTransformProvider) {
                assert !inputs.isEmpty();
                return cache.useCache(() -> {
    
                    final List<U> results = new ArrayList<>(inputs.size());
                    final List<Callable<Void>> transforms = new ArrayList<>(inputs.size());
                    final Set<HashCode> seen = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

             ++subgraph_idx) {
          const auto subgraph = model->subgraphs()->Get(subgraph_idx);
          for (size_t i = 0; i < subgraph->inputs()->size(); ++i) {
            if (subgraph->inputs()->Get(i) == tensor_idx) {
              return true;
            }
          }
          for (size_t i = 0; i < subgraph->outputs()->size(); ++i) {
            if (subgraph->outputs()->Get(i) == tensor_idx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    from file("copy2source.txt")
                }
    
                tasks.register("reader") {
                    inputs.files($tasksInput)
                    doLast {
                        println inputs.files.files*.name
                    }
                }
            """
    
            when:
            configurationCacheRun "reader"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. pilot/pkg/simulation/traffic.go

    }
    
    func (sim *Simulation) Run(input Call) (result Result) {
    	result = Result{t: sim.t}
    	input = input.FillDefaults()
    	if input.Alpn != "" && input.TLS == Plaintext {
    		result.Error = fmt.Errorf("invalid call, ALPN can only be sent in TLS requests")
    		return result
    	}
    
    	// First we will match a listener
    	l := matchListener(sim.Listeners, input)
    	if l == nil {
    		result.Error = ErrNoListener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top