Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for buildGraph (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.fake_py.debug

      x = value
      y = value
      math_ops.add(x, y, name='x_y_sum')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 02 16:34:34 UTC 2020
    - 83 bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt.fake_py.debug

      x = value
      y = value
      math_ops.add(x, y, name='x_y_sum')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 05 22:01:37 UTC 2020
    - 84 bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/make_test_graphs.py

      array_ops.identity(updates, name='result')
    
    
    def write_graph(build_graph, out_dir):
      """Build a graph using build_graph and write it out."""
      g = ops.Graph()
      with g.as_default():
        build_graph(out_dir)
        filename = os.path.join(out_dir, 'test_graph_%s.pb' % build_graph.__name__)
        with open(filename, 'wb') as f:
          f.write(
              six.ensure_binary(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt

    # Checks that source debug information is used in the output error message.
    # CHECK: error: 'tf.Add' op operands don't have broadcast-compatible shapes
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
        key: "shape"
        value: {
          shape: {
            dim: {
              size: -1
            }
          }
        }
      }
      attr: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:00:09 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt

    # the node x_y_sum = Add
    # CHECK: INVALID ARGUMENTS: Dimensions must be equal, but are 2 and 3 for 'x_y_sum = Add[T=DT_INT32](aot_feed_0/x, aot_feed_0/y)'
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    
    # Checks the error message produced by tfcompile without mlir_component
    # OLD: INVALID ARGUMENTS: Incompatible shapes: [2] vs. [3]
    # OLD: x_y_sum
    
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top