Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,961 for output0 (0.09 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

      func.func @conv_with_multiple_uses(%arg0: tensor<1x3x4x3xf32> {tf_saved_model.index_path = ["input"]}) -> (tensor<1x3x2x2xf32> {tf_saved_model.index_path = ["output"]}, tensor<1x3x2x1xf32> {tf_saved_model.index_path = ["output2"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input:0", outputs = "PartitionedCall:0, Sum:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      func.func @serving_default(%arg0: tensor<1024x1024xf32> {tf_saved_model.index_path = ["input_tensor"]}) -> (tensor<1024x3xf32> {tf_saved_model.index_path = ["output1"]}, tensor<1024x3xf32> {tf_saved_model.index_path = ["output2"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input_tensor:0", outputs = "PartitionedCall:0"}, tf_saved_model.exported_names = ["serving_default"]} {
        %0 = stablehlo.constant dense<1.000000e+03> : tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. tensorflow/cc/client/client_session.cc

      return options;
    }
    
    Status ClientSession::Run(const std::vector<Output>& fetch_outputs,
                              std::vector<Tensor>* outputs) const {
      return Run(FeedType{}, fetch_outputs, {}, outputs);
    }
    
    Status ClientSession::Run(const FeedType& inputs,
                              const std::vector<Output>& fetch_outputs,
                              std::vector<Tensor>* outputs) const {
      return Run(inputs, fetch_outputs, {}, outputs);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

                apply plugin: "base"
                task customTask {
                    inputs.file "input.txt"
                    outputs.file "build/output" withPropertyName "output"
                    outputs.cacheIf { true }
                    doLast {
                      mkdir('build/output')
                      file('build/output/output.txt').text = file('input.txt').text
                    }
                }
            """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/resources/org/gradle/api/resource/TextResourceIntegrationTest/shared/build.gradle

        output = project.file("output.txt")
    }
    
    task fileCollectionTextUsingTaskProvider(type: MyTask) {
        config = resources.text.fromFile(generateConfigFile)
        output = project.file("output.txt")
    }
    
    task archiveEntryText(type: MyTask) {
        config = resources.text.fromArchiveEntry(configurations.sharedConfig, "config.txt")
        output = project.file("output.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 27 20:48:11 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/cc/ops/while_loop.h

    namespace ops {
    
    // Function that takes cond graph inputs and returns cond graph boolean output.
    // 'output' need not be set if an error is returned.
    typedef std::function<Status(const Scope&, const std::vector<Output>& inputs,
                                 Output* output)>
        CondGraphBuilderFn;
    
    // Function that takes body graph inputs and returns body graph outputs.
    // 'outputs' need not be populated if an error is returned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/testutil.cc

      ClientSession session(scope);
      TF_CHECK_OK(session.Run(tensors, out));
    }
    
    void GetTensor(const Scope& scope, Output tensor, Tensor* out) {
      std::vector<Tensor> outputs;
      GetTensors(scope, {std::move(tensor)}, &outputs);
      *out = outputs[0];
    }
    
    void GetTensors(const Scope& scope, const std::vector<Output>& assign_vars,
                    const OutputList& tensors, std::vector<Tensor>* out) {
      ClientSession session(scope);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 07 06:52:56 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            then:
            outputs.stdOut.readLines() == ['message']
            outputs.stdErr == ''
        }
    
        def rendersErrorLogEventsToStdErr() {
            when:
            renderer.attachSystemOutAndErr()
            renderer.onOutput(event('message', LogLevel.ERROR))
    
            then:
            outputs.stdOut == ''
            outputs.stdErr.readLines() == ['message']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/testutil.h

                    const OutputList& tensors, std::vector<Tensor>* out);
    
    /// Computes the output 'tensor', returning the resulting tensor in 'out'.
    void GetTensor(const Scope& scope, Output tensor, Tensor* out);
    
    // Computes the output 'tensor', returning the resulting tensor in 'out'.
    // assign_vars are extra outputs that should be run
    // e.g. to assign values to variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:47:18 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top