Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stateful_pcall_func (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        ```mlir
        func.func @main() -> tensor<i32> {
          %0 = "tf.StatefulPartitionedCall"() {_xla_compile_device_type = "CPU", f = @stateful_pcall_func} : () -> (tensor<i32>)
          func.return %0 : tensor<i32>
        }
    
        func.func @stateful_pcall_func() -> tensor<i32> {
          %0 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
          func.return %0 : tensor<i32>
        }
        ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

          %0 = "tf_device.cluster"() ({
            %1 = "tf.StatefulPartitionedCall"() {_xla_compile_device_type = "CPU", f = @stateful_pcall_func} : () -> tensor<i32>
            tf_device.return %1 : tensor<i32>
          }) : () -> tensor<i32>
    
          func.return %0 : tensor<i32>
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    func.func @stateful_partitioned_call(%arg0: tensor<i32>) -> tensor<i32> {
      // CHECK: call @stateful_pcall_func([[ARG]]) : (tensor<i32>) -> tensor<i32>
      %0 = "tf.StatefulPartitionedCall"(%arg0) {config = "", config_proto = "", executor_type = "", f = @stateful_pcall_func} : (tensor<i32>) -> (tensor<i32>)
      func.return %0 : tensor<i32>
    }
    
    func.func @stateful_pcall_func(%arg0: tensor<i32>) -> tensor<i32> {
      func.return %arg0 : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top