Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ContainsFloatResultType (0.36 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      }
    
      if (is_hybrid) {
        return base_function_name.concat("_hybrid_fn").str();
      }
    
      return base_function_name.concat("_fn").str();
    }
    
    bool ContainsFloatResultType(ArrayRef<Type> result_types) {
      for (auto current_type : result_types) {
        if (mlir::dyn_cast<TensorType>(current_type).getElementType().isF32())
          return true;
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top