Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for opC (0.02 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_while_results.mlir

    // CHECK:       ^bb0
    // CHECK:         (%[[CARG:[a-zA-Z0-9_]+]]: tensor<*xf32>)
    // CHECK:       tf.OpA
    // CHECK:       ^bb0
    // CHECK:         (%[[BARG:[a-zA-Z0-9_]+]]: tensor<*xf32>)
    // CHECK-NOT:   tf.OpB
    // CHECK:       tf.OpC
    // CHECK-SAME:    %[[BARG]]
    func.func @remove_first_result(%arg0: tensor<*xf32>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      %0:2 = "tf.WhileRegion"(%arg0, %arg1) ({
      ^bb0(%arg2: tensor<*xf32>, %arg3: tensor<*xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 20:25:31 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/move_tpu_compile_to_front.mlir

       // CHECK: OpA
       // CHECK: OpB
       // CHECK: OpC
       "tf.OpA"() : () -> ()
       %status_x, %program_x = "tf._TPUCompileMlir"() { metadata = "X", mlir_module = "..." } : () -> (tensor<!tf_type.string>, tensor<!tf_type.string>)
       "tf.OpB"() : () -> ()
       %status_y, %program_y = "tf._TPUCompileMlir"() { metadata = "Y", mlir_module = "..." } : () -> (tensor<!tf_type.string>, tensor<!tf_type.string>)
       "tf.OpC"() : () -> ()
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 00:26:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute.mlir

            %b:2 = "tf.opB"(%a) : (tensor<i1>) -> (tensor<i32>, tensor<f32>)
            tf_device.return %b#1, %b#0 : tensor<f32>, tensor<i32>
          }) {device = "CPU:0"} : () -> (tensor<f32>, tensor<i32>)
          %c = "tf.opC"() : () -> tensor<i1>
          tf_executor.yield %a, %launch#0, %launch#1, %c : tensor<i1>, tensor<f32>, tensor<i32>, tensor<i1>
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK-NOT: tf_executor.island
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 17:10:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      "tf.opC"(%4) {_xla_compile_device_type = "TPU", _replication_info = "replicate", device = "/device:TPU:0", name = "name", is_stateless = true} : (tensor<i1>) -> ()
      %5 = "tf.TPUReplicatedInput"(%arg5) {index = 4 : i64, is_packed = true} : (tensor<i1>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

      %0:3 = tf_executor.graph {
        %1:4 = tf_executor.island {
          %3 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          %4 = "tf.opB"(%3) : (tensor<i1>) -> tensor<i1>
          %5 = "tf.opC"(%4) : (tensor<i1>) -> tensor<i1>
          tf_executor.yield %3, %5, %4 : tensor<i1>, tensor<i1>, tensor<i1>
        }
        tf_executor.fetch %1#1, %1#0, %1#2 : tensor<i1>, tensor<i1>, tensor<i1>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute_legacy.mlir

          %c = "tf.opC"() : () -> tensor<i1>
          tf_executor.yield %a, %launch#0, %launch#1, %c : tensor<i1>, tensor<f32>, tensor<i32>, tensor<i1>
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      %[[A:.*]] = "tf.opA"
    // CHECK:      %[[B:.*]]:2 = "tf.opB"(%[[A]])
    // CHECK-SAME: device = "CPU:0"
    // CHECK:      %[[C:.*]] = "tf.opC"
    // CHECK-NOT:  "tf_device.launch"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 21 20:14:51 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    //    "tf_device.parallel_execute"() ({
    //      "tf.OpC"
    //    }, {
    //      "tf.OpD"
    //    })
    //  }
    //
    // The above IR will be flattened after `ReplicateToIslandPass` and
    // `ParallelExecuteToIslandsPass` as follows:
    //
    // tf_executor.island wraps "tf.OpA"
    // tf_executor.island {_parallel_execution_ids=r0:0} wraps "tf.OpB"
    // tf_executor.island {_parallel_execution_ids=r0:0,p0:0} wraps "tf.OpC"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands.mlir

        }
        %3:3 = tf_executor.island() {
          %4:2 = "tf_device.parallel_execute"() ({
            %5 = "tf.opB"(%1#0) : (tensor<i1>) -> tensor<i1>
            tf_device.return %5 : tensor<i1>
          }, {
            %5 = "tf.opC"(%1#0) : (tensor<i1>) -> tensor<i32>
            tf_device.return %5 : tensor<i32>
          }) {} : () -> (tensor<i1>, tensor<i32>)
          tf_executor.yield %4#0, %4#1 : tensor<i1>, tensor<i32>
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // possible that live-out values don't dominate the region. For example:
    //
    // ```
    // %0 = "tf.OpA"()
    // %1 = "tf.OpB"(%0)
    // %2 = "tf.OpC"(%0)
    // ```
    //
    // Assuming `tf.OpA` and `tf.OpC` are clustered together, the region will be
    // inserted right after `tf.OpC`. The live-out `%0`, however, is used by
    // `tf.OpB`, which won't dominate the region. This function reorders all users
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

          %3 = "tf.opB"(%2, %arg0) : (tensor<i32>, tensor<i32>) -> tensor<i32>
          tf_executor.yield %3 : tensor<i32>
        }
        %4:2 = tf_executor.island {
          %5 = "tf.opC"(%1#0, %arg1) : (tensor<i32>, tensor<i32>) -> tensor<i32>
          %6 = "tf.opD"(%5, %arg0) : (tensor<i32>, tensor<i32>) -> tensor<i32>
          tf_executor.yield %6 : tensor<i32>
        }
        tf_executor.fetch %4#0 : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
Back to top