Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsI16Type (0.41 sec)

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

      return quantized_type != nullptr &&
             quantized_type.getStorageTypeIntegralWidth() == 16 &&
             quantized_type.isSigned();
    }
    
    // Return true when the given element_type is I16.
    bool IsI16Type(Type element_type) {
      return element_type.isInteger(16) && !element_type.isUnsignedInteger();
    }
    
    // Return true when the given element_type is I32.
    bool IsI32Type(Type element_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top