Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,217 for output0 (0.45 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-undefined-output.pbtxt

    # RUN: not tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-input-arrays=input -tf-input-data-types=DT_FLOAT -tf-input-shapes='' -tf-output-arrays=NotANodeInTheGraph -o - 2>&1 | FileCheck %s
    
    # CHECK: Output NotANodeInTheGraph was not found in graph
    
    node {
      name: "input"
      op: "Placeholder"
      device: "/device:CPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 10 23:27:16 UTC 2021
    - 713 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/op_reg_gen.py

        for attr in all_dec_args.get('derived_attrs', []):
          py_str = attr.replace('"', "'")
          cxx_reg_code.append('.Attr("{}")'.format(py_str))
        for output_ in all_dec_args.get('outputs', []):
          cxx_reg_code.append('.Output("{}")'.format(output_))
        cxx_reg_code[-1] += ';\n'
        self.emit('\n    '.join(cxx_reg_code))
    
    
    class OpRegGen(transpiler.GenericTranspiler):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/end2end/conv_2d_nchw.pbtxt

          type: DT_FLOAT
        }
      }
    }
    node {
      name: "output_0"
      op: "Identity"
      input: "conv_net_2d_1/Relu"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    }
    library {
    }
    
    # CHECK: 'main' inputs:
    # CHECK-NEXT: name: 'input'
    # CHECK-NEXT: 'main' outputs:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 03 03:26:13 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  4. 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)
  5. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuterIntegrationTest.groovy

            }
    
            and:
            outputs.stdOut.contains("BEFORE OUT")
            stripped(outputs.stdOut).contains(result1.output)
            stripped(outputs.stdOut).contains(result2.output)
            outputs.stdOut.contains("AFTER OUT")
    
            and:
            outputs.stdErr.contains("BEFORE ERR")
            stripped(outputs.stdOut).contains(result1.error)
            stripped(outputs.stdOut).contains(result2.error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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. 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