Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsBias (0.07 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_traits.h

    // The base class that all the quantization related OpTrait implements.
    template <typename ConcreteType, template <typename> class TraitType>
    struct QuantizationSpecTraitBase : public TraitBase<ConcreteType, TraitType> {
      static bool IsBias(int index) { return false; }
      static bool IsQuantizable() { return true; }
    };
    
    // This class provides the API for ops that has a fixed output value range.
    // This is used as a trait like this:
    //
    //   class SoftmaxOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top