Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,961 for output0 (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/unique_output_name.mlir

        %0:2 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/providers/listProperty/groovy/build.gradle

        @OutputFile
        abstract RegularFileProperty getOutputFile()
    
        @TaskAction
        void produce() {
            String message = 'Hello, World!'
            def output = outputFile.get().asFile
            output.text = message
            logger.quiet("Wrote '${message}' to ${output}")
        }
    }
    
    abstract class Consumer extends DefaultTask {
        @InputFiles
        abstract ListProperty<RegularFile> getInputFiles()
    
        @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

      }
      if (!tensorflow::ParseOutputArrayInfo(output_arrays_flag, &outputs).ok()) {
        return emitError(loc, "parsing output array info failed ")
                   << output_arrays_flag,
               nullptr;
      }
      return tflite::FlatBufferToMlir(
          absl::string_view(input->getBufferStart(), input->getBufferSize()),
          context, loc, use_external_constant, inputs, outputs,
          experimental_prune_unreachable_nodes_unconditionally,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskTypeUpToDateIntegrationTest.groovy

            buildFile """
                task copy(type: SimpleCopy) {
                    input = file("input.txt")
                    output = file("output.txt")
                }
            """
    
            when:
            succeeds "copy"
            then:
            executedAndNotSkipped ":copy"
    
            file("output.txt").makeOlder()
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

           .Input("inputs: N * T")
           .Output("output: T")
           .Output("value_index: int32")
    
        For example:
          %2 = tf_executor.Merge %0, %1, %2, %3 : tensor<*xf32>
    
        Note: Additional result corresponds to the control output.
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$inputs_and_control
      );
    
      let results = (outs
        AnyTensor:$output,
        TensorOf<[I32]>:$value_index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

            1 * task.getOutputs() >> outputs
            1 * outputs.getFiles() >> fileCollection
            1 * fileCollection.getSingleFile() >> Stub(File)
            0 * _
        }
    
        def "fails resolving lazy MavenArtifact for Provider<Task> notation when task has a multiple output files"() {
            def task = Mock(Task)
            def taskProvider = Mock(TestTaskProvider)
            def outputs = Mock(TaskOutputsInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaSourceIncrementalCompilationIntegrationTest.groovy

            textFile.text = "text file as root"
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
            file("extra/B.${language.name}").text = "class B { String change; }"
            executer.withArgument "--info"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "B", "C")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProcessOutputProviderIntegrationTest.groovy

            when:
            run("-q", ":printScriptOutput")
    
            then:
            outputContains("Script output")
        }
    
        def "task with providers.exec provider input is up to date for second run"() {
            given:
            def testScript = ShellScript.builder()
                .printText("Script output")
                .writeTo(testDirectory, "script")
    
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

                println "src dir 1: " + srcDir.get()
                println "output dir 1: " + outputDir.get()
                buildDir = "output/some-dir"
                childDirName = "other-child"
                println "src dir 2: " + srcDir.get()
                println "output dir 2: " + outputDir.get()
    """
    
            when:
            run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/image_grad_test.cc

        TensorShape x_shape({1, 2, 2, 1});
        Tensor x_data = MakeData<T>(x_shape);
        Output x, y;
        MakeOp<T>(op_type, x_data, {4, 6}, align_corners, half_pixel_centers, &x,
                  &y);
    
        ClientSession session(scope_);
        std::vector<Tensor> outputs;
        TF_ASSERT_OK(session.Run({y}, &outputs));
        EXPECT_EQ(outputs.size(), 1);
        EXPECT_EQ(outputs[0].shape(), TensorShape({1, 4, 6, 1}));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
Back to top