Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for attrType (0.22 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.h

    // Ensure an attribute named attr_name exists and it is of type AttrType.
    // If so, sets the `out_attr` pointer to point to the casted attribute.
    template <typename AttrType>
    bool EnsureAttribute(const DictionaryAttr& composite_attributes,
                         const std::string& attr_name, AttrType* out_attr) {
      Attribute attr = composite_attributes.get(attr_name);
      if (!mlir::isa_and_nonnull<AttrType>(attr)) {
        return false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 18:33:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.h

    struct FetchMinMaxAttrs {
      using AttrType = FloatAttr;
      bool operator()(TFFakeQuantOp tf_op, AttrType &min_value,
                      AttrType &max_value) const {
        min_value = tf_op.getMinAttr();
        max_value = tf_op.getMaxAttr();
        return true;  // Successfully matched and fetched.
      }
    };
    
    template <class TFFakeQuantOp>
    struct FetchConstantMinMaxInputs {
      using AttrType = DenseFPElementsAttr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/fake_quant_utils.h

    struct FetchMinMaxAttrs {
      using AttrType = FloatAttr;
      bool operator()(TFFakeQuantOp tf_op, AttrType &min_value,
                      AttrType &max_value) const {
        min_value = tf_op.getMinAttr();
        max_value = tf_op.getMaxAttr();
        return true;  // Successfully matched and fetched.
      }
    };
    
    template <class TFFakeQuantOp>
    struct FetchConstantMinMaxInputs {
      using AttrType = DenseFPElementsAttr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    		}
    		skipArgs, ok := kvFuncSkipArgs(fn)
    		if !ok {
    			// Not a slog function that takes key-value pairs.
    			return
    		}
    		// Here we know that fn.Pkg() is "log/slog".
    		if attrType == nil {
    			attrType = fn.Pkg().Scope().Lookup("Attr").Type()
    		}
    
    		if isMethodExpr(pass.TypesInfo, call) {
    			// Call is to a method value. Skip the first argument.
    			skipArgs++
    		}
    		if len(call.Args) <= skipArgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/proxy/util/nfacct/nfacct_linux.go

    		return nil, err
    	}
    
    	// attrsProcessed tracks the number of processed attributes.
    	var attrsProcessed int
    
    	// length and type of netlink attribute.
    	var length, attrType uint16
    
    	// now we are just left with the attributes(struct nlattr) after skipping netlink generic
    	// message; we iterate over all the attributes one by one to construct our Counter object.
    	for reader.Len() > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/html/template/transition.go

    		}, len(s)
    	}
    
    	attrName := strings.ToLower(string(s[i:j]))
    	if c.element == elementScript && attrName == "type" {
    		attr = attrScriptType
    	} else {
    		switch attrType(attrName) {
    		case contentTypeURL:
    			attr = attrURL
    		case contentTypeCSS:
    			attr = attrStyle
    		case contentTypeJS:
    			attr = attrScript
    		case contentTypeSrcset:
    			attr = attrSrcset
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal.go

    		n := val.Len()
    		for i := 0; i < n; i++ {
    			if err := p.marshalAttr(start, name, val.Index(i)); err != nil {
    				return err
    			}
    		}
    		return nil
    	}
    
    	if val.Type() == attrType {
    		start.Attr = append(start.Attr, val.Interface().(Attr))
    		return nil
    	}
    
    	s, b, err := p.marshalSimple(val.Type(), val)
    	if err != nil {
    		return err
    	}
    	if b != nil {
    		s = string(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.td

    // Receives a composite DictionaryAttr and returns the value of the Attribute
    // with the key `attr_name` as the type provided by `attr_type`.
    class GetCompositeAttributeAs<string attr_name, string attr_type>:
      NativeCodeCall<"$0.get(\"" # attr_name # "\").dyn_cast<" # attr_type # ">()">;
    
    // Receives a composite DictionaryAttr and returns the value of the Attribute
    // with the key `attr_name` as a DenseIntElementsAttr.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			// refer to it via "C.<name>", so skip these vars
    			//
    			// See issue 53000 for more context.
    			if name == "" {
    				break
    			}
    			typOff, _ := e.Val(dwarf.AttrType).(dwarf.Offset)
    			if typOff == 0 {
    				if e.Val(dwarf.AttrSpecification) != nil {
    					// Since we are reading all the DWARF,
    					// assume we will see the variable elsewhere.
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/cc_op_gen_util.h

    // Returns a <string, bool> pair. The string is the C++ type name to be used for
    // attr_type when defining an object of that type. The bool is a flag to
    // indicate whether to treat the type as const when accepting the C++ type as an
    // argument to a function.
    std::pair<StringPiece, bool> AttrTypeName(StringPiece attr_type);
    
    StringPiece ListElementTypeName(StringPiece attr_type);
    
    bool IsCPPKeyword(StringPiece name);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top