Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,251 for noOutputs (0.26 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

        }
    
        /**
         * The way the outputs have been produced.
         */
        enum ExecutionOutcome {
            /**
             * The outputs haven't been changed, because the work is already up-to-date
             * (i.e. its inputs and outputs match that of the previous execution in the
             * same workspace).
             */
            UP_TO_DATE,
    
            /**
             * The outputs of the work have been loaded from the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/cc/framework/while_gradients_test.cc

            return s.status();
          },
          [](const Scope& s, const std::vector<Output>& inputs,
             std::vector<Output>* outputs) {
            outputs->push_back(ops::AddN(s, {inputs[0], inputs[1]}));
            outputs->push_back(ops::AddN(s, {inputs[1], 1}));
            outputs->push_back(inputs[2]);
            return s.status();
          });
      CreateBackprop();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 27 20:32:17 UTC 2017
    - 7.7K 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. tensorflow/cc/tools/freeze_saved_model.h

    // 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)
  6. .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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            buildFile << """
                task customTask {
                    inputs.file "input.txt"
                    outputs.file "build/output.txt" withPropertyName "output"
                    outputs.$type "build/output/missing" withPropertyName "missing"
                    outputs.cacheIf { true }
                    doLast {
                        file("build").mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. 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)
  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