Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for input0 (0.08 sec)

  1. guava/src/com/google/common/collect/Iterators.java

        return concatNoDefensiveCopy(Arrays.copyOf(inputs, inputs.length));
      }
    
      /**
       * Combines multiple iterators into a single iterator. The returned iterator iterates across the
       * elements of each iterator in {@code inputs}. The input iterators are not polled until
       * necessary.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    //
    // A register phi must have the phi and all of its inputs allocated to the
    // same register. Register phis are spilled similarly to regular ops.
    //
    // A stack phi must have the phi and all of its inputs allocated to the same
    // stack location. Stack phis start out life already spilled - each phi
    // input must be a store (using StoreReg) at the end of the corresponding
    // predecessor block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        if (input.exists()) {
                            println "processing \${input.name}"
                        } else {
                            println "processing missing \${input.name}"
                        }
                        def output = outputs.file(input.name + ".green")
                        output.text = input.list().length + ".green"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (!filter_type || filter_type.getRank() != 4 ||
            !filter_type.hasStaticShape())
          return failure();
    
        Value input = tf_op.getInput();
        RankedTensorType input_type =
            mlir::dyn_cast<RankedTensorType>(input.getType());
        // Only rank size four input will be only available by the tf.Conv2D
        // operator verification.
        if (!input_type || input_type.isDynamicDim(3)) {
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

            ClosingFuture.whenAllComplete(ImmutableList.of(input1, input2Failed))
                .call(
                    new CombiningCallable<TestCloseable>() {
                      @Override
                      public TestCloseable call(DeferredCloser closer, Peeker peeker) throws Exception {
                        closer.eventuallyClose(closeable1, closingExecutor);
                        assertThat(peeker.getDone(input1)).isSameInstanceAs("value1");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "converting \${input.name} to red"
                        assert input.file
                        def output = outputs.file(input.name + ".red")
                        output.text = input.text + ".red"
                    }
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

    // Predicate denote logical formulas and mapping a node `n` to a predicate
    // `pred` implies that `n` is live whenever `pred` is true.  Then we can deduce
    // mismatching liveness in the inputs to node by comparing the predicate those
    // inputs are mapped to.  The core logic of this pass resides in creating the
    // map from TensorFlow nodes to predicates.
    //
    //
    // MAPPING NODES TO PREDICATES, MODULO CYCLES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                                &output_permutation, &call_node_def_));
    
        // Apply the input/output permutations to the 'args_by_...' and 'results_'
        // mappings, so when we build edges in BuildOutputGraph() we
        // connect them to the right input/output positions.
        if (input_permutation.size() != args_by_src_.size()) {
          return errors::InvalidArgument("Input permutation has incorrect size.");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager_test.go

    			false,
    			false,
    			func(input v1.PodStatus) v1.PodStatus {
    				input.Phase = v1.PodRunning
    				input.Reason = "Unknown"
    				input.Message = "Message"
    				return input
    			},
    			func(input v1.PodStatus) v1.PodStatus {
    				input.Phase = v1.PodFailed
    				input.Reason = "Evicted"
    				input.Message = "Was Evicted"
    				return input
    			},
    			v1.PodStatus{
    				Phase: v1.PodFailed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          }
        }
      }
      return has_quantized_types_for_weights;
    }
    
    // Checks if all the inputs are quantized.
    bool IsQuantizedCallforStaticRange(TF::PartitionedCallOp call_op) {
      bool has_quantized_types = false;
      for (Value input : call_op.getArgs()) {
        if (auto type = mlir::dyn_cast<TensorType>(input.getType())) {
          if (mlir::isa<QuantizedType>(type.getElementType())) {
            has_quantized_types = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top