Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EmptyParams (0.13 sec)

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

    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h"
    
    namespace mlir {
    namespace quant {
    
    static bool EmptyParams(QuantParams p) { return p == quant::QuantizedType(); }
    
    // The state for each op result during the quantization parameters propagation.
    struct QuantState {
      // Quantization parameters propagated to an op result.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

            return failure();
          }
          break;
        }
        case ScaleConstraintType::OutputInputSameScale: {
          auto params = GetQuantParamsForSameScaleConstraint(op);
          if (EmptyParams(params)) {
            *changed |= false;
            break;
          }
          // propagate this params to all the quantizable ports.
          if (failed(PropagateQuantParams(op, params, new_items, changed))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/mime/multipart/multipart.go

    */
    package multipart
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"internal/godebug"
    	"io"
    	"mime"
    	"mime/quotedprintable"
    	"net/textproto"
    	"path/filepath"
    	"strconv"
    	"strings"
    )
    
    var emptyParams = make(map[string]string)
    
    // This constant needs to be at least 76 for this package to work correctly.
    // This is because \r\n--separator_of_len_70- would fill the buffer and it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top