Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HashTableAndInitializeTableToV2 (0.35 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

    //===----------------------------------------------------------------------===//
    // Canonicalize tf.HashTable and its user ops to V2 versions.
    //===----------------------------------------------------------------------===//
    def HashTableAndInitializeTableToV2 : Pat<
      (TF_InitializeTableFromTextFileOp:$src (TF_HashTableOp $container,
        $shared_name, $use_node_name_sharing, $key_dtype, $value_dtype), $filename,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    void HashTableOp::getCanonicalizationPatterns(RewritePatternSet& results,
                                                  MLIRContext* context) {
      results.add<HashTableAndInitializeTableToV2>(context);
      results.add<HashTableAndLookupTableSizeToV2>(context);
      results.add<HashTableAndLookupTableFindToV2>(context);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top