Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for x_z_sum (0.12 sec)

  1. tensorflow/compiler/aot/tests/make_test_graphs.py

      x = constant_op.constant([1], name='x_const')
      y = constant_op.constant([2], name='y_const')
      math_ops.add(x, y, name='x_y_sum')
    
    
    def tfadd_with_ckpt(out_dir):
      x = array_ops.placeholder(dtypes.int32, name='x_hold')
      y = variable_v1.VariableV1(constant_op.constant([0]), name='y_saved')
      math_ops.add(x, y, name='x_y_sum')
    
      init_op = variables.global_variables_initializer()
      saver = saver_lib.Saver(write_version=saver_pb2.SaverDef.V1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K 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/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.debug

    traces: {
        key  : "x@"
        value: {
          file_line_cols: {
            line      : 1
            col       : 1
          }
        }
    }
    traces: {
        key  : "x_y_sum@"
        value: {
          file_line_cols: {
            line      : 3
            col       : 1
          }
          file_line_cols: {
            line      : 4
            col       : 1
          }
        }
    }
    traces: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 16 00:15:24 UTC 2020
    - 586 bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/test_graph_tfadd_with_ckpt.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "x_y_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 159 bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt.config.pbtxt

    feed {
      id { node_name: "x" }
      shape {
        dim { size: 2 }
      }
    }
    feed {
      id { node_name: "y" }
      shape {
        dim { size: 3 }
      }
    }
    fetch {
      id { node_name: "x_y_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 05 22:01:37 UTC 2020
    - 221 bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/test_graph_tfadd.config.pbtxt

    feed {
      id { node_name: "x_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "x_y_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 233 bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/test_graph_tfadd.pbtxt

      op    : "Reshape"
      input : "y_const"
      input : "y_shape"
      attr { key: "T" value { type: DT_INT32 } }
      # Attribute TShape not specified; needs to be set to its default
      # by tfcompile.
    }
    node {
      name  : "x_y_sum"
      op    : "Add"
      input : "x_const"
      input : "y_reshape"
      attr {
        key  : "T"
        value {
          type: DT_INT32
        }
      }
    }
    versions {
      producer: 15
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 07 01:22:33 UTC 2017
    - 894 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

    
    Composite = composite.Composite
    
    #--- test fn for mlir location ---
    
    
    @Composite('TestInputNOp')
    def _tfr_loc_test(x):
      n = 10
      x_sum = x[0]
      for i in range(1, n):
        x_sum = math_ops.Add(x_sum, x[i])
      return x_sum
    
    
    #--- test fn for tfr tensors ---
    
    
    @composite.Composite('TestNoOp')
    def _tfr_tensor_empty_arg():
      pass
    
    
    @composite.Composite('TestIdentityOp')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/compile.cc

    // to allow a Python debugger to insert source information about the graph node.
    // For example, a Python add expression may be represented as
    // {{node, x_y_sum}} = Add(x, y) in the error message. See routine interpolate
    // in tensorflow/python/framework/error_interpolation.py for more detail.
    static std::string InterpolateErrorMessage(std::string message) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_EQ(muladd.LookupArgIndex("y_hold"), -1);
      EXPECT_EQ(muladd.LookupArgIndex("x_y_prod"), -1);
      EXPECT_EQ(muladd.LookupArgIndex("x_y_sum"), -1);
    
      EXPECT_EQ(muladd.LookupResultIndex("x_y_prod"), 0);
      EXPECT_EQ(muladd.LookupResultIndex("x_y_sum"), 1);
      EXPECT_EQ(muladd.LookupResultIndex(""), -1);
      EXPECT_EQ(muladd.LookupResultIndex("x"), -1);
      EXPECT_EQ(muladd.LookupResultIndex("y"), -1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top