Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for called_func (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @test_arg_count_mismatch(%arg0: tensor<i32>) -> () {
      // expected-error @below {{argument count mismatch: 'args' has 1 argument(s), but 'call_func' expects 2}}
      "tf.LegacyCall"(%arg0) {f = @call_func} : (tensor<i32>) -> tensor<i32>
      func.return
    }
    
    func.func @call_func(%arg0: tensor<f32>, %arg1: tensor<f32>) -> tensor<f32> {
      func.return %arg0 : tensor<f32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top