Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hashtable (1.57 sec)

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

      // CHECK: [[handle:%.*]] = "tf.HashTableV2"()
      // CHECK-SAME: container = ""
      // 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>
    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)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      return IdentityArithmeticOpFolder<MulOp>(*this, operands);
    }
    
    //===----------------------------------------------------------------------===//
    // HashTableOp
    //===----------------------------------------------------------------------===//
    void HashTableOp::getCanonicalizationPatterns(RewritePatternSet& results,
                                                  MLIRContext* 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)
  4. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

        // expected-remark@above {{Successors: {6}}}
            %handle1 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "some_name", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
            // expected-remark@above {{ID: 0}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
Back to top