Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,748 for input0 (0.08 sec)

  1. pkg/test/framework/label/filter.go

    func (f *Selector) Selects(inputs Set) bool {
    	return !inputs.containsAny(f.absent) && inputs.containsAll(f.present)
    }
    
    // Excludes returns false, if the given set of labels, even combined with new ones, could end up satisfying the Selector.
    // It returns false, if Matches would never return true, even if new labels are added to the input set.
    func (f *Selector) Excludes(inputs Set) bool {
    	return inputs.containsAny(f.absent)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/tf_concrete_function_test_protos.h

    // tf.function with 0 inputs
    StructuredValue ZeroArgInputSignature();
    
    // Returns a StructuredValue corresponding to the serialized InputSignature of a
    // tf.function with 1 input
    StructuredValue SingleArgInputSignature();
    
    // Returns a StructuredValue corresponding to the serialized InputSignature of a
    // tf.function with 3 inputs
    StructuredValue ThreeArgInputSignature();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

          cost += GetRankedTensorSize(type);
        } else {
          // For unranked tensors, use the max size among the input tensors. This is
          // because the only dynamic information of the function should be the
          // input, so the size of dynamic tensors should be usually capped by
          // inputs' sizes.
          cost += max_arg_size_;
        }
      }
    
      cost_map_[op] = cost;
    }
    
    }  // namespace tfrt_compiler
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

                getName() >> "input"
            }
    
            when:
            binary.sources.put("custom", customSourceSet)
    
            then:
            binary.sources.values()*.name == ["custom"]
    
            when:
            binary.inputs.add inputSourceSet
    
            then:
            binary.sources.values()*.name == ["custom"]
            binary.inputs*.name == ["input"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

      func.func @conv_with_multiple_uses(%arg0: tensor<1x3x4x3xf32> {tf_saved_model.index_path = ["input"]}) -> (tensor<1x3x2x2xf32> {tf_saved_model.index_path = ["output"]}, tensor<1x3x2x1xf32> {tf_saved_model.index_path = ["output2"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input:0", outputs = "PartitionedCall:0, Sum:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/AntBuilder.java

         * and is expected to return the desired name for the corresponding Gradle task.
         * The transformer may be called multiple times with the same input.
         * Implementations should ensure uniqueness of the return value for a distinct input.
         * That is, no two inputs should yield the same return value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            buildFile << """
    // This is a workaround to bust the JVM's file canonicalization cache
    def f = file("delete-me")
    f.createNewFile()
    f.delete() // invalidates cache
    
    task work {
        inputs.file('in.txt')
        inputs.dir('in-dir')
        def outTxt = file('out.txt')
        def outDir = file('out-dir')
        outputs.file(outTxt)
        outputs.dir(outDir)
        doLast {
            outTxt.text = 'content'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

    using llvm::cl::opt;
    
    // Import options.
    // NOLINTNEXTLINE
    opt<std::string> input_arrays(
        "tf-input-arrays", llvm::cl::desc("Input tensor names, separated by ','"),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> input_dtypes(
        "tf-input-data-types",
        llvm::cl::desc("(Optional) Input tensor data types, separated by ','. Use "
                       "'' if a single data type is skipped. The data type from "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            def ex = thrown(IllegalArgumentException)
            ex.message == "Unable to calculate percentage: 50 of -10. All inputs must be >= 0"
    
            when:
            percentOf(-1, 100) == 0
            then:
            ex = thrown(IllegalArgumentException)
            ex.message == "Unable to calculate percentage: -1 of 100. All inputs must be >= 0"
        }
    
        def "formats bytes (#bytes -> #humanReadableString)"(long bytes, String humanReadableString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

                task producer {
                    def inputTxt = file("input.txt")
                    def outputTxt = file("build/output.txt")
                    inputs.files(inputTxt)
                    outputs.file(outputTxt)
                    doLast {
                        outputTxt.text = inputTxt.text
                    }
                }
            """
    
            file("input.txt").text = "input"
            def outputFile = file("build/output.txt")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top