Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 836 for inputs_ (0.31 sec)

  1. cmd/object-api-input-checks.go

    Anis Eleuch <******@****.***> 1712232280 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

         *
         * @since 6.0
         */
        @TaskAction
        protected void compile(InputChanges inputs) {
            DefaultJavaCompileSpec spec = createSpec();
            if (!compileOptions.isIncremental()) {
                performFullCompilation(spec);
            } else {
                performIncrementalCompilation(inputs, spec);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                }
    
                task consumesResultOfPrepareBuildAndGeneratesAInSameDirectory {
                    inputs.files(sources)
                    outputs.file("app/src/generatedA.txt")
                    doLast {}
                }
    
                task consumesResultOfPrepareBuildAndGeneratesBInSameDirectory {
                    inputs.files(sources)
                    outputs.file("app/src/generatedB.txt")
                    doLast {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_function.cc

        TF_EXCLUSIVE_LOCKS_REQUIRED(fn_body->mu) {
      input_tensors->reserve(ninputs);
      for (int i = 0; i < ninputs; ++i) {
        Node* node = inputs[i].oper ? &inputs[i].oper->node : nullptr;
        int idx = inputs[i].index;
    
        TF_RETURN_WITH_CONTEXT_IF_ERROR(
            fn_body->graph.IsValidOutputTensor(node, idx),
            "Encountered while processing input ", i, " into function '", fn_name,
            "'");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

        std::vector<TFE_TensorHandle*> device_inputs;
        device_inputs.reserve(inputs.size());
        for (int input_index = 0; input_index < inputs.size(); ++input_index) {
          // Parallel tensors are divided between operations by device.
          device_inputs.push_back(inputs[input_index]->tensor(device_index));
        }
        device_thread->StartExecute(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      auto switch_on_compilation_pred =
          NodeWith(Op("Switch"), Inputs(Out(0, xla_compile), Out(1, xla_compile)));
      auto ctrl_dep =
          NodeWith(Op("Identity"), Inputs(Out(0, switch_on_compilation_pred)));
      // Check that we pipe int32 inputs through an IdentityN to avoid extra D2H
      // copies.
      EXPECT_THAT(
          stateful_partitioned_call_op,
          NodeWith(Inputs(Out(NodeWith(Op("IdentityN"), CtrlDeps(ctrl_dep))))));
    }
    #endif
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/kernels/xla_ops.cc

        // Fetch inputs from the OpKernelContext. Inputs are the same as the ones
        // for XlaCompile, except that the must-be-constant inputs that appear in
        // the beginning are stripped off and the closure key is appended as the
        // last input. So the inputs look like: input tensors, resource variables,
        // closure key tensor.
        std::vector<const Tensor*> inputs = InputsFromContext(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            def actualDir = file("actualDir").createDir()
            file("symlink1").createLink(actualDir)
            file("symlink2").createLink(actualDir)
    
            buildFile << """
                task myTask {
                    def outputFile = file("build/output.txt")
                    inputs.dir("symlink1")
                    inputs.dir("symlink2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.h

    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    
    // This analyzes a TensorFlow graph to identify nodes which may have partially
    // dead inputs (i.e. these nodes may have some dead inputs and some alive
    // inputs).
    //
    // For example, the ADD node in the following graph
    //
    //      V0  PRED0    V1  PRED1
    //       |    |       |    |
    //       v    v       v    v
    //       SWITCH       SWITCH
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

        def File inputDir
    
        @OutputDirectory
        def File outputDir
    
        @Input
        def inputProperty // File input property
    
        @TaskAction
        void execute(InputChanges inputs) { // InputChanges parameter
            println inputs.incremental ? "CHANGED inputs are out of date"
                                       : "ALL inputs are out of date"
        }
    }
    ----
    =====
    ====
    
    [IMPORTANT]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top