Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for i64 (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //   %items0 = "tf.Unpack"(%[[INP0]]) {axis = 0 : i64}
    //     : (tensor<1x2xf32>) -> tensor<2xf32>
    //   %items1:4 = "tf.Unpack"(%[[INP1]]) {axis = 0 : i64}
    //     : (tensor<4x2xf32>) -> (tensor<2xf32>, tensor<2xf32>, tensor<2xf32>,
    //     tensor<2xf32>)
    //   %axis = "tf.Const"() {value = dense<0> : tensor<i64>}
    //   %0 = "tf.Pack"(items1#3, items1#2, items1#1, items1#0, %items0, %axis)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK-DAG: [[VAR:%.+]] = "tf.VarHandleOp"
        %resource = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<*xi32>>>
    
        // CHECK-DAG: [[READVAR:%.+]] = "tf.ReadVariableOp"([[VAR]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    // TODO(lyandy): Investigate supported dtypes (`minval`, `maxval`, `output`) for
    // `tf.StatefulUniformInt`. tf2xla kernels support i32, i64, ui32, and ui64
    // while TensorFlow CPU/GPU kernels only support i32 and i64.
    def TF_StatefulUniformIntOp : TF_Op<"StatefulUniformInt", []> {
      let summary = "Outputs random integers from a uniform distribution.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (returnType (GetEmbeddingLookupShape $indices, $filter))
        ),
        (Arith_ConstantOp (GetShape (GetIthValue<0> $outputs)))),
      [(I32ElementsVal $indices),     // lookup is not implemented for i64
       (IsNoneType $bias)]>;          // Maybe folded into the lookup matrix later
    
    // Same as above, but if indices are already 1D, then no reshape is needed.
    def ReplaceOneHotDynamicShapeFullyConnectedWithLookup : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %1 = "quantfork.stats"(%0) {
        layerStats = dense<[-1.0, 1.0]> : tensor<2xf32>,
        axisStats = dense<[
          [-1.0, 1.0],
          [-8.0, 8.0],
          [-0.5, 0.5]
        ]> : tensor<3x2xf32>, axis = 2 : i64
      } : (tensor<8x4x3xf32>) -> tensor<8x4x3xf32>
      func.return %1 : tensor<8x4x3xf32>
    
    // CHECK: %[[q1:.*]] = "tfl.quantize"(%arg0) <{qtype = tensor<8x4x3x!quant.uniform<u8:f32, 0.0078431372549019607:128>>}> {volatile}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top