Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for inputs_ (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = [{
    output = input; While (Cond(output)) { output = Body(output) }
      }];
    
      let description = [{
    output = input; While (Cond(output)) { output = Body(output) }
    
    input: A list of input tensors whose types are T.
    output: A list of output tensors whose types are T.
    cond: A function that takes 'input' and returns a tensor.  If the tensor is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. 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)
  3. android/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)
  4. 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)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

       *
       * @param input the primary input {@code Future}
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against the input's exception. "The input's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@code input.get()} or, if {@code get()} throws a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. 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)
  7. src/testing/testing.go

    //	    }
    //	  })
    //	}
    //
    // A fuzz test maintains a seed corpus, or a set of inputs which are run by
    // default, and can seed input generation. Seed inputs may be registered by
    // calling (*F).Add or by storing files in the directory testdata/fuzz/<Name>
    // (where <Name> is the name of the fuzz test) within the package containing
    // the fuzz test. Seed inputs are optional, but the fuzzing engine may find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            reportDir.isDescendant(reportLocationShown)
        }
    
        def "report is not created when there are no CC problems or inputs"() {
            file("build.gradle") << """
                buildDir = 'out'
                tasks.register('noProblemsOrInputs') {
                    // no build configuration inputs or problems
                    doLast {
                        println("Success")
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	}
    	return binder.FindPodVolumes(logger, pod, podVolumeClaims, node)
    }
    
    func TestFindPodVolumesWithoutProvisioning(t *testing.T) {
    	t.Parallel()
    
    	type scenarioType struct {
    		// Inputs
    		pvs     []*v1.PersistentVolume
    		podPVCs []*v1.PersistentVolumeClaim
    		// If nil, use pod PVCs
    		cachePVCs []*v1.PersistentVolumeClaim
    		// If nil, makePod with podPVCs
    		pod *v1.Pod
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

       *
       * @param input the primary input {@code Future}
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against the input's exception. "The input's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@code input.get()} or, if {@code get()} throws a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top