Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HashTable (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK-SAME: key_dtype = !tf_type.string
      // CHECK-SAME: shared_name = "table"
      // CHECK-SAME: value_dtype = i32
      // CHECK-SAME: device = ""
      // CHECK-SAME: () -> tensor<!tf_type.resource>
      %handle = "tf.HashTable"() {container = "", device = "", shared_name = "table", key_dtype = !tf_type.string, value_dtype = i32} : () -> tensor<*x!tf_type.stringref>
    
      // CHECK: "tf.InitializeTableFromTextFileV2"([[handle]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let arguments = (ins
        TFL_TensorOf<[Complex<F<32>>, Complex<F<64>>]>:$input
      );
    
      let results = (outs
        TFL_TensorOf<[F32, F64]>:$output
      );
    }
    
    def TFL_HashtableOp: TFL_Op<"hashtable", []> {
      let summary = "Creates a non-initialized hash table.";
      let description = [{
    This op creates a hash table, specifying the type of its keys and values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top