Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,251 for noOutputs (0.13 sec)

  1. tensorflow/c/c_api_function.cc

      return absl::OkStatus();
    }
    
    // Converts `noutputs` and `outputs` into `outputs_tensors` and does various
    // checks while doing so.
    Status ProcessOutputs(const TF_Graph* fn_body, const char* fn_name,
                          int noutputs, const TF_Output* outputs,
                          std::vector<OutputTensor>* output_tensors)
        TF_EXCLUSIVE_LOCKS_REQUIRED(fn_body->mu) {
      output_tensors->reserve(noutputs);
      for (int i = 0; i < noutputs; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

      std::vector<tensorflow::Output> outputs(n);
      for (int i = 0; i < n; ++i) {
        outputs[i] =
            tensorflow::Output(&tf_outputs[i].oper->node, tf_outputs[i].index);
      }
      return outputs;
    }
    
    void TFOutputsFromOutputs(const std::vector<tensorflow::Output>& outputs,
                              TF_Output* tf_outputs) {
      for (int i = 0; i < outputs.size(); i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ops/mlir_passthrough_op.cc

    namespace tensorflow {
    
    REGISTER_OP("MlirPassthroughOp")
        .Attr("mlir_module: string")
        .Attr("Tinputs : list(type) >= 0")
        .Input("inputs: Tinputs")
        .Attr("Toutputs : list(type) >= 0")
        .Output("outputs: Toutputs")
        .SetShapeFn(shape_inference::UnknownShape);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 14 23:15:53 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskTypeUpToDateIntegrationTest.groovy

                }
            """
    
            when:
            fails 'noOutput'
            then:
            failure.assertHasDescription("Execution failed for task ':noOutput'.")
            failure.assertHasCause("You must declare outputs or use `TaskOutputs.upToDateWhen()` when using the incremental task API")
        }
    
        private static String declareSimpleCopyTask(boolean modification = false) {
            """
    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/c/c_api.h

    //  noutputs - number of elements in `outputs` array
    //  outputs - array of TF_Outputs that specify the outputs of the function.
    //            If `noutputs` is zero (the function returns no outputs), `outputs`
    //            can be null. `outputs` can contain the same tensor more than once.
    //  output_names - The names of the function's outputs. `output_names` array
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/composite.py

                   op_name,
                   inputs=None,
                   attrs=None,
                   derived_attrs=None,
                   outputs=None):
        self._op_name = op_name
        self._inputs = inputs
        self._attrs = attrs
        self._derived_attrs = derived_attrs
        self._outputs = outputs
    
      def __call__(self, compose_fn):
        # TODO(fengliuai): more sanity check of the input function and make sure
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

                throw new AssertionError(String.format("The grouped output for transform '%s' could not be found.%nOutput:%n%s", transformer, originalOutput));
            } else if (foundTransforms.size() > 1) {
                throw new AssertionError(String.format("Multiple grouped outputs for transform '%s' were found. Consider specifying a subject.%nOutput:%n%s", transformer, originalOutput));
            }
    
            return foundTransforms.get(0);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

                                std::vector<string>* outputs) {
      TF_RETURN_IF_ERROR(ParseNodeNames(array_names, *outputs));
      return absl::OkStatus();
    }
    
    Status ParseOutputArrayInfo(const std::vector<string>& output_names,
                                std::vector<string>* outputs) {
      for (auto& output_name : output_names) {
        if (output_name.empty()) continue;
        outputs->push_back(output_name);
      }
      return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

            outputs.fileProperties*.propertyFiles*.files.flatten() == [file("a")]
            outputs.fileProperties*.outputFile == [file("a")]
            outputs.fileProperties*.outputType == [FILE]
        }
    
        def "can register output dir"() {
            when:
            outputs.dir("a")
            then:
            outputs.files.files == files('a')
            outputs.fileProperties*.propertyName == ['$1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            source("class A {}", "class B {}")
            outputs.snapshot { run language.compileTaskName }
            source("class A { garbage }")
            runAndFail language.compileTaskName
            outputs.noneRecompiled()
    
            when:
            source("class A { }")
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A")
            outputs.hasFiles(file("A.class"), file("B.class"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top