Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for Const_2 (0.18 sec)

  1. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

      Output Get1DHostConstant(int64_t constant) {
        auto it = cache_.find(constant);
        if (it == cache_.end()) {
          Output new_const =
              ops::Const(scope_.WithOpName("const_", constant), {constant});
          it = cache_.insert({constant, new_const}).first;
          for (const Edge* e : control_deps_) {
            scope_.graph()->AddControlEdge(e->src(), new_const.node());
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/outside_compilation.mlir

        %0 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_space_to_depth_pass.mlir

        // CHECK: %[[CONST2:.*]] = "tf.Const"() <{value = dense<
        // CHECK-SAME: [8, 8, 3, 64]
        // CHECK: %[[RESHAPE1:.*]] = "tf.Reshape"(%[[TRANSPOSE1:.*]], %[[CONST2:.*]]) : (tensor<4x2x4x2x3x64xf32>, tensor<4xi64>) -> tensor<8x8x3x64xf32>
        // CHECK: %[[CONST3:.*]] = "tf.Const"() <{value = dense<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 37.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %0 = "tf.Relu"(%arg0) : (tensor<1xi32>) -> tensor<1xi32>
      func.return %0: tensor<1xi32>
    
    // CHECK-LABEL: testReluI32
    // CHECK:  %[[CONST_0:.*]] = arith.constant dense<0> : tensor<i32>
    // CHECK:  %[[RES0:.*]] = "tfl.maximum"(%arg0, %[[CONST_0]]) : (tensor<1xi32>, tensor<i32>) -> tensor<1xi32>
    // CHECK:  return %[[RES0]] : tensor<1xi32>
    }
    
    func.func @testReluI64(%arg0: tensor<1xi64>) -> tensor<1xi64> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // considered dynamic so use -1 here if k is not a constant value.
      int const_k = -1;
      ElementsAttr cst;
      if (matchPattern(k, m_Constant(&cst)))
        // These casts should all be valid due to how Tensor constants are stored.
        // TODO(jpienaar): This should use a helper function.
        const_k = cst.getValues<IntegerAttr>()[0].getValue().getSExtValue();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "ConstNil", typ: "BytePtr"},   // nil pointer
    	{name: "Const8", aux: "Int8"},        // auxint is sign-extended 8 bits
    	{name: "Const16", aux: "Int16"},      // auxint is sign-extended 16 bits
    	{name: "Const32", aux: "Int32"},      // auxint is sign-extended 32 bits
    	// Note: ConstX are sign-extended even when the type of the value is unsigned.
    	// For instance, uint8(0xaa) is stored as auxint=0xffffffffffffffaa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    }
    
    // CHECK-LABEL: xla_conv_v2
    func.func @xla_conv_v2(%arg0: tensor<4x8x8x16xf32>) -> tensor<4x8x8x16xf32> {
      %0 = "tf.Const"() {value = dense<1.000000e+00> : tensor<3x3x16x16xf32>} : () -> tensor<3x3x16x16xf32> loc("Const_1")
      %1 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32> loc("XlaConv/feature_group_count")
      %2 = "tf.Const"() {value = dense<1> : tensor<2x2xi32>} : () -> tensor<2x2xi32> loc("XlaConv/padding")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  8. doc/asm.html

    This improves the readability of assembly code, and keeps it robust to
    changes in data layout either in the Go type definitions or in the
    layout rules used by the Go compiler.
    </p>
    
    <p>
    Constants are of the form <code>const_<i>name</i></code>.
    For example, given the Go declaration <code>const bufSize =
    1024</code>, assembly code can refer to the value of this constant
    as <code>const_bufSize</code>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  9. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Rsh8Ux64 x (Const64 [c])) && uint64(c) < 8 => (SRLconst (SLLconst <typ.UInt32> x [24]) [int32(c+24)])
    
    // large constant shifts
    (Lsh32x64 _ (Const64 [c])) && uint64(c) >= 32 => (Const32 [0])
    (Rsh32Ux64 _ (Const64 [c])) && uint64(c) >= 32 => (Const32 [0])
    (Lsh16x64 _ (Const64 [c])) && uint64(c) >= 16 => (Const16 [0])
    (Rsh16Ux64 _ (Const64 [c])) && uint64(c) >= 16 => (Const16 [0])
    (Lsh8x64 _ (Const64 [c])) && uint64(c) >= 8 => (Const8 [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

              func {
                name: "__inference_signature_wrapper_13"
              }
            }
          }
        }
        node {
          name: "NoOp"
          op: "NoOp"
        }
        node {
          name: "Const_1"
          op: "Const"
          device: "/device:CPU:0"
          attr {
            key: "_output_shapes"
            value {
              list {
                shape {
                }
              }
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
Back to top