Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,267 for Outputs (0.14 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/signature_with_multiple_entry_points.mlir

    // CHECK-SAME: tf.entry_function = {inputs = "input1:0,input2:0", outputs = "result:0"}
    // CHECK-SAME: tf_saved_model.exported_names = ["add"]
    
    // CHECK: func @sub(
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["input1"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["result"]}
    // CHECK-SAME: tf.entry_function = {inputs = "input2:0,input1:0", outputs = "result:0"}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    [[sec:task_output_caching_details]]
    == Cacheable tasks
    
    Since a task describes all of its inputs and outputs, Gradle can compute a _build cache key_ that uniquely defines the task's outputs based on its inputs.
    That build cache key is used to request previous outputs from a build cache or store new outputs in the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/array_grad_test.cc

      std::vector<AbstractTensorHandle*> outputs(2);
      status_ =
          RunModel(IdentityNGradModel, immediate_execution_ctx_.get(),
                   {x1.get(), x2.get()}, absl::MakeSpan(outputs), UseFunction());
      ASSERT_EQ(errors::OK, status_.code()) << status_.message();
      EXPECT_EQ(outputs[0], nullptr);
      ASSERT_NO_FATAL_FAILURE(CheckTensorValue(outputs[1], {1.0f}, /*dims*/ {},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables_test_pass.h

                 const std::vector<std::string>& output_names,
                 const std::vector<std::string>& target_nodes,
                 std::vector<Tensor>* outputs) override {
        tensorflow::RunMetadata run_metadata;
        return Run(tensorflow::RunOptions(), inputs, output_names, target_nodes,
                   outputs, &run_metadata);
      }
    
      Status Run(const tensorflow::RunOptions& run_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 15:49:06 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. .github/workflows/contributor-pr.yml

          - uses: actions/upload-artifact@v4
            with:
              name: build-receipt.properties
              path: platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        outputs:
          matrix: ${{ steps.setup-matrix.outputs.matrix }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K 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/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

        }
    }
    ----
    =====
    ====
    
    == Understanding inputs and outputs
    
    Task inputs and outputs are important for:
    
    1. *Up-to-date checks* - Gradle’s incremental build feature helps your build avoid doing the same work more than once by looking at changes for task inputs and outputs.
    2. *Linking task inputs and outputs* - When outputs of one task are linked to the inputs of another, Gradle can automatically create task dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  8. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJavaIncrementalAnnotationProcessingIntegrationTest.groovy

            }
            """
            compile()
    
            then:
            outputs.recompiledClasses("Entity1", "Entity1Repository", "ServiceRegistry", "Main")
        }
    
        def "aggregating annotation processors are incremental"() {
            given:
            CompilationOutputsFixture outputs = new CompilationOutputsFixture(processing.dir.file("groovy/user/build/classes"))
            outputs.snapshot { compile() }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/FailingIncrementalTasksIntegrationTest.groovy

            modifyOutputs | incremental | description
            "add"         | false       | "with additional outputs is fully rebuilt"
            "change"      | false       | "with changed outputs is fully rebuilt"
            "remove"      | false       | "with removed outputs is fully rebuilt"
            "none"        | true        | "with unmodified outputs is executed as incremental"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 01 14:32:13 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                withArgument("--max-workers=$threadCount")
            }
        }
    
        def "overlapping outputs prevent parallel execution"() {
            given:
            withParallelThreads(2)
    
            and:
            buildFile << """
                aPing.outputs.dir "dir"
                bPing.outputs.file "dir/file"
            """
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top