Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for _arg0 (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %0 = "tf.Bitcast"(%arg0) : (tensor<8x16x32x64xf32>) -> tensor<8x16x32x64xf32>
      // CHECK: return %arg0
      func.return %0: tensor<8x16x32x64xf32>
    }
    
    // CHECK-LABEL: testDifferentBitcastType
    func.func @testDifferentBitcastType(%arg0: tensor<8x16x32x64xf32>) -> tensor<8x16x32x64xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

    ^bb0(%arg0: tensor<? x f32>):
      // CHECK: "tfl.log"(%arg0)
      %0 = "tfl.log"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    // CHECK-LABEL: testLogStaticShapeInputAndDynamicShapeOutput
    func.func @testLogStaticShapeInputAndDynamicShapeOutput(tensor<8 x f32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<8 x f32>):
      // CHECK: "tfl.log"(%arg0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK:  %3 = "tf.MaxPool"(%arg0)
    // CHECK:  %4 = "tf.MaxPool"(%arg0)
    }
    
    func.func @abs(%arg0: tensor<8x16xf32>) -> tensor<8x16xf32> {
      %0 = "tf.Abs"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
      func.return %0 : tensor<8x16xf32>
    
    // CHECK-LABEL:abs
    // CHECK:  "tfl.abs"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
    }
    
    func.func @any(%arg0: tensor<2x2xi1>, %arg1: tensor<i32>) -> tensor<i1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

      func.func @replicated_model_parallel_execute_tpu_cluster_func(%arg0: tensor<?xi32>) -> tensor<?xi32> {
        // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"
        %0 = "tf.A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
        // CHECK: %[[REPLICATE:[0-9]*]]:4 = tf_device.replicate
        %1:4 = tf_device.replicate([%0, %arg0, %arg0, %arg0] as %ri_0: tensor<?xi32>) {n = 4 : i32} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    func.func @reshape_float(%arg0: tensor<2x3x4xf32>) -> tensor<6x4xf32> {
      %0 = stablehlo.reshape %arg0 : (tensor<2x3x4xf32>) -> tensor<6x4xf32>
      return %0 : tensor<6x4xf32>
    }
    // CHECK-LABEL: reshape_float
    // CHECK-NOT: tfl.reshape
    // CHECK: stablehlo.reshape
    
    // -----
    
    // Tests that a quantized `stablehlo.select` is converted to `tfl.select_v2`.
    
    func.func @select(
        %arg0: tensor<1x3xi1>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    module {
    // CHECK-LABEL: func private @some_func
    // CHECK-LABEL: func @func_with_call
    func.func private @some_func(%arg0: tensor<100xf32>) -> tensor<100xf32> attributes {tf.api_implements = "lstm_b4e9f0e7-ac55-42bc-8ef2-8496419a608c"}
    func.func @func_with_call(%arg0: tensor<100xf32>) -> tensor<100xf32> {
      %0 = func.call @some_func(%arg0) : (tensor<100xf32>) -> tensor<100xf32>
      func.return %0 : tensor<100xf32>
      }
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              return errors::InvalidArgument(
                  "Invalid \"_handle_dtypes\" attribute value for _Arg node: ",
                  shape_attr->DebugString());
            }
            if (shape_attr->list().shape().empty()) {
              return errors::InvalidArgument(
                  "Invalid \"_handle_shapes\" attribute value for _Arg node: ",
                  shape_attr->DebugString());
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    //
    // The code for parsing this file lives in rulegen.go; this file generates
    // ssa/rewritegeneric.go.
    
    // values are specified using the following format:
    // (op <type> [auxint] {aux} arg0 arg1 ...)
    // the type, aux, and auxint fields are optional
    // on the matching side
    //  - the type, aux, and auxint fields must match if they are specified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top