Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for addType (0.14 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasFolder = 1;
      let hasCanonicalizer = 1;
    
      let builders = [
        OpBuilder<(ins "TypedAttr":$value),
        [{
          $_state.addAttribute("value", value);
          $_state.addTypes(value.getType());
        }]>
      ];
    
      let extraClassDeclaration = [{
        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r);
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FILE_TYPE_DISK    = 0x0001
    	FILE_TYPE_PIPE    = 0x0003
    	FILE_TYPE_REMOTE  = 0x8000
    	FILE_TYPE_UNKNOWN = 0x0000
    )
    
    type Hostent struct {
    	Name     *byte
    	Aliases  **byte
    	AddrType uint16
    	Length   uint16
    	AddrList **byte
    }
    
    type Protoent struct {
    	Name    *byte
    	Aliases **byte
    	Proto   uint16
    }
    
    const (
    	DNS_TYPE_A       = 0x0001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		p.As == ADECB || p.As == ADECL || p.As == ADECQ || p.As == ADECW
    
    	if !cmpAddSub && !testAnd && !incDec {
    		return false, 0
    	}
    
    	if !incDec {
    		var argOne obj.AddrType
    		var argTwo obj.AddrType
    		if cmp {
    			argOne = p.From.Type
    			argTwo = p.To.Type
    		} else {
    			argOne = p.To.Type
    			argTwo = p.From.Type
    		}
    		if argOne == obj.TYPE_REG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                        Attribute value) {
      // Handle the case where the type and value are already tensors.
      if (mlir::isa<TensorType>(type) && mlir::isa<ElementsAttr>(value)) {
        result.addTypes(type);
        result.addAttribute("value", value);
        return;
      }
    
      // Otherwise, default to the attribute builder.
      ConstOp::build(builder, result, value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    #define GET_ATTRDEF_LIST
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_attrdefs.cc.inc"
          >();
      addInterfaces<TensorFlowLiteInlinerInterface,
                    TensorFlowLiteDialectFoldInterface>();
      addTypes<ControlType>();
    }
    
    //===----------------------------------------------------------------------===//
    // Common support logic
    //===----------------------------------------------------------------------===//
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -N IP-MASQ
        iptables -w -t nat -A POSTROUTING -m comment --comment "ip-masq: ensure nat POSTROUTING directs all non-LOCAL destination traffic to our custom IP-MASQ chain" -m addrtype ! --dst-type LOCAL -j IP-MASQ
        iptables -w -t nat -A IP-MASQ -d 169.254.0.0/16 -m comment --comment "ip-masq: local traffic is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. api/go1.3.txt

    pkg debug/dwarf, const TagTemplateAlias = 67
    pkg debug/dwarf, const TagTemplateAlias Tag
    pkg debug/dwarf, const TagTypeUnit = 65
    pkg debug/dwarf, const TagTypeUnit Tag
    pkg debug/dwarf, method (*Data) AddTypes(string, []uint8) error
    pkg debug/macho, const CpuArm = 12
    pkg debug/macho, const CpuArm Cpu
    pkg debug/macho, const CpuPpc = 18
    pkg debug/macho, const CpuPpc Cpu
    pkg debug/macho, const CpuPpc64 = 16777234
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
Back to top