Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TFL_ArrayMaxCount (0.2 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        CPred<"$_self.cast<StringAttr>().getValue() == \"" # value # "\"">,
        "whose value equals to '" # value # "'">;
    
    // Ensures the array attribute's size is within the given maximum size.
    class TFL_ArrayMaxCount<int n> : AttrConstraint<
        CPred<"$_self.isa<ArrayAttr>() && $_self.cast<ArrayAttr>().size() <= " # n>,
        "whose size is at most " # n>;
    
    // Ensures the given integer attribute has the given value.
    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