Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Erfinv (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        %0, %1 = "tf.Unique"(%arg0) : (tensor<5xf32>) -> (tensor<?xf32>, tensor<?xi32>)
        func.return %0, %1 : tensor<?xf32> , tensor<?xi32>
      }
    
      // CHECK-LABEL: @erfinv
      func.func @erfinv(%input: tensor<4xf32>) -> tensor<4xf32> {
        // CHECK-NOT: tf.Erfinv
        %0 = "tf.Erfinv"(%input) : (tensor<4xf32>) -> tensor<4xf32>
        func.return %0 : tensor<4xf32>
      }
    
      // CHECK-LABEL: @ndtri
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  2. tensorflow/cc/framework/cc_op_gen_util.cc

        if (pos != string::npos) {
          result = result.substr(pos + 1);
        }
      }
      return result;
    }
    
    string GetFilename(StringPiece path) {
      size_t slash_pos = path.rfind('/');
      if (slash_pos == path.npos) slash_pos = -1;
      size_t dot_pos = path.rfind('.');
      return string(path.substr(slash_pos + 1, dot_pos - (slash_pos + 1)));
    }
    
    string ToGuard(StringPiece path) {
      string guard;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top