Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PropagateQuantParams (0.29 sec)

  1. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

          if (EmptyParams(params)) {
            *changed |= false;
            break;
          }
          // propagate this params to all the quantizable ports.
          if (failed(PropagateQuantParams(op, params, new_items, changed))) {
            return failure();
          }
          break;
        }
        default: {
          // TODO(fengliuai): implement the other types.
          llvm_unreachable("no implementation.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

      // so they can be added to the working queue. `changed` is set to true if
      // there are any new elements being added to `new_items`.
      LogicalResult PropagateQuantParams(Operation *op, const QuantParams params,
                                         AdjacentOperations *new_items,
                                         bool *changed);
    
     private:
      class StatesManager {
       public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top