Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for y_const (0.18 sec)

  1. tensorflow/compiler/aot/test_graph_tfunknownop.pbtxt

      op    : "Add"
      input : "x_const"
      input : "y_const"
      attr { key  : "T" value { type: DT_INT32 } }
    }
    node {
      name  : "z"
      op    : "SomeUnknownOp"
      input : "x_const"
    }
    node {
      name  : "z_identity"
      op    : "Identity"
      input : "z:1"
      attr { key  : "T" value { type: DT_INT32 } }
    }
    node {
      name  : "x_z_sum"
      op    : "Add"
      input : "x_const"
      input : "z_identity"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 07 01:22:33 UTC 2017
    - 984 bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/test_graph_tfadd.pbtxt

    node {
      name  : "x_const"
      op    : "Const"
      attr {
        key: "value"
        value {
          tensor { dtype: DT_INT32 tensor_shape { dim { size: 1 } } int_val: 1 }
        }
      }
      attr {
        key  : "dtype"
        value {
          type       : DT_INT32
        }
      }
    }
    node {
      name  : "y_const"
      op    : "Const"
      attr {
        key: "value"
        value {
          tensor { dtype: DT_INT32 tensor_shape { dim { size: 1 } } int_val: 2 }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 07 01:22:33 UTC 2017
    - 894 bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/test_graph_tfunknownop2.config.pbtxt

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

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

    # Text form of tensorflow.tf2xla.Config proto.
    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)
  6. tensorflow/compiler/aot/test_graph_tfunknownop3.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "z" output_index: 1}
      shape {
        dim { size: 1 }
      }
      type: DT_INT32
    }
    fetch {
      id { node_name: "x_y_sum" }
    }
    fetch {
      id { node_name: "x_z_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 372 bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/test_graph_tfunknownop.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    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)
  8. tensorflow/cc/framework/gradients_test.cc

      auto x = Variable(scope_test_, {2, 3}, DT_DOUBLE);
      auto x_const = Const(scope_test_, {{1.0, 2.0, 3.0}, {4.0, 5.0, 6.0}});
      auto x_assign = Assign(scope_test_, x, x_const);
    
      auto y = Variable(scope_test_, {3, 1}, DT_DOUBLE);
      auto y_const = Const(scope_test_, {{1.0}, {2.0}, {3.0}});
      auto y_assign = Assign(scope_test_, y, y_const);
    
      auto m = MatMul(scope_test_, x, y);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tests/make_test_graphs.py

    from tensorflow.python.ops import variables
    from tensorflow.python.training import saver as saver_lib
    
    FLAGS = None
    
    
    def tfadd(_):
      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')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. test/const.go

    package main
    
    import "os"
    
    const (
    	c0      = 0
    	cm1     = -1
    	chuge   = 1 << 100
    	chuge_1 = chuge - 1
    	c1      = chuge >> 100
    	c3div2  = 3 / 2
    	c1e3    = 1e3
    
    	rsh1 = 1e100 >> 1000
    	rsh2 = 1e302 >> 1000
    
    	ctrue  = true
    	cfalse = !ctrue
    
    	// Issue #34563
    	_ = string(int(123))
    	_ = string(rune(456))
    )
    
    const (
    	f0              = 0.0
    	fm1             = -1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
Back to top