Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stateful_pcall_func (0.4 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)
Back to top