Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,961 for output0 (0.5 sec)

  1. tensorflow/compiler/mlir/tfr/define_op_template.py

      if FLAGS.gen_register_op:
        assert FLAGS.output.endswith('.cc')
        generated_code = gen_register_op(sys.modules[__name__], '_composite_')
      else:
        assert FLAGS.output.endswith('.mlir')
        generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_')
    
      dirname = os.path.dirname(FLAGS.output)
      if not os.path.exists(dirname):
        os.makedirs(dirname)
      with open(FLAGS.output, 'w') as f:
        f.write(generated_code)
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

                logger3.log(it, "Test");
            }
            redirector.stop()
    
            then:
            0 * _
    
            System.out == outputs.stdOutPrintStream
            System.err == outputs.stdErrPrintStream
        }
    
        def "start and stop output with redirection and default logging"() {
            when:
            redirector.redirectStandardOutputTo(stdOutListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/CacheableTaskOutcomeCrossVersionSpec.groovy

                    def outputFile = new File(buildDir, "output")
                    inputs.file("input")
                    outputs.file(outputFile)
                    outputs.cacheIf { true }
    
                    doLast {
                        outputFile.parentFile.mkdirs()
                        outputFile.text = "done"
                    }
                }
    """
            def cacheDir = file("task-output-cache")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

            result.assertTaskSkipped(":createEmpty")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13554")
        def "removing an empty output directory is detected even when it existed before the first task execution"() {
            buildFile """
                task createEmptyDir {
                    outputs.dir("empty")
                    doLast {
                        // do nothing, since Gradle does create the empty directory for us.
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            TaskWithOutputFile  | 'outputs' | [null] as Object[]
            TaskWithOutputFiles | 'outputs' | [null] as Object[]
            TaskWithOutputFiles | 'outputs' | [] as List
            TaskWithInputFiles  | 'inputs'  | [null] as Object[]
            TaskWithOutputDir   | 'outputs' | [null] as Object[]
            TaskWithOutputDirs  | 'outputs' | [null] as Object[]
            TaskWithOutputDirs  | 'outputs' | [] as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  6. tensorflow/cc/tools/freeze_saved_model.h

    namespace tensorflow {
    
    // Returns a frozen GraphDef, input tensors, and output tensors from the loaded
    // SavedModelBundle.
    // `inputs` and `outputs` consist of the union of all inputs and outputs in the
    // SignatureDefs in the SavedModelBundle.
    // FreezeSavedModel sets `frozen_graph_def` to a GraphDef of all nodes needed by
    // `outputs`. All variables in the supplied SavedModelBundle are converted to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

         * as this does not include overlapping outputs not produced by the work.
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFilesProducedByWork();
    
        /**
         * The origin metadata of the outputs captured.
         */
        OriginMetadata getOriginMetadata();
    
        /**
         * Whether the outputs come from a previous execution.
         */
        boolean isReused();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/optional_input.json

                32,
                16
              ],
              "name": "output",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            2
          ],
          "operators": [
            {
              "inputs": [
                0,
                1
              ],
              "outputs": [
                2
              ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      //    operators. We also convert the XlaClusterOutput output nodes of the
      //    function call into the outputs of the XlaLaunch operator.
      static Status BuildXlaLaunchOps(Graph* graph);
    
      struct XlaFunctionInfo {
        int variable_start_index = -1;
        std::string function_name;
      };
    
      // We need to introduce this version to adapt to the output of gpu inference
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/transforms/CopyPublicApiClassesTransform.kt

        @get:InputArtifact
        @get:Classpath
        abstract val inputArtifact: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
            val jarFile = inputArtifact.get().asFile
            val zipFile = ZipFile(jarFile)
            val outputRoot = outputs.dir("public-api")
            zipFile.stream().forEach { entry ->
                if (entry.shouldInclude()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top