Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for fsType (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            """Initializes a SimpleGatherAndConvModel."""
            self.embedding_w = np.random.randn(1024, 3, 4, 3).astype('f4')
            self.embedding_w = np.minimum(np.maximum(self.embedding_w, -4), 4)
    
            self.conv_filters = np.random.uniform(
                low=-10, high=10, size=filter_shape
            ).astype('f4')
    
            second_conv_filter_shape = (3, 3, filter_shape[-1], 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        # TODO(mdan): Is ATTR equivalent to string?
        return {_PY_TYPE_TO_TFR.get(type(value), TFRTypes.ATTR)}
    
      def res_call(self, ns, types_ns, node, f_type, args, keywords):
        # resolves the return type of the function call.
        name = anno.Basic.QN.of(node.func)
        if f_type == (TFRTypes.AG_BUILTIN_FUNC,):
    
          if name == QN(QN('ag__'), attr='if_stmt'):
            nouts = node.args[6].value
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    			break
    		}
    		if p.isUnsafeData(c.Fun, true) {
    			return true
    		}
    		if !p.isType(c.Fun) {
    			break
    		}
    		x = c.Args[0]
    	}
    	return false
    }
    
    // isType reports whether the expression is definitely a type.
    // This is conservative--it returns false for an unknown identifier.
    func (p *Package) isType(t ast.Expr) bool {
    	switch t := t.(type) {
    	case *ast.SelectorExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    // DWARF generator) know means the symbol is not decodable.
    // Leave type:runtime. symbols alone, because other parts of
    // the linker manipulates them.
    func typeSymbolMangle(name string) string {
    	isType := strings.HasPrefix(name, "type:")
    	if !isType && !strings.Contains(name, "@") {
    		// Issue 58800: instantiated symbols may include a type name, which may contain "@"
    		return name
    	}
    	if strings.HasPrefix(name, "type:runtime.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Working with files::
     * You can no longer cast `FileCollection` objects to other types using the `as` keyword or the `asType()` method.
     * You can no longer pass `null` as the configuration action of link:{javadocPath}/org/gradle/api/file/CopySpec.html#from-java.lang.Object-org.gradle.api.Action-[CopySpec.from(Object, Action)].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	case _Arrow:
    		// recvchantype
    		p.next()
    		p.want(_Chan)
    		t := new(ChanType)
    		t.pos = pos
    		t.Dir = RecvOnly
    		t.Elem = p.chanElem()
    		return t
    
    	case _Func:
    		// fntype
    		p.next()
    		_, t := p.funcType("function type")
    		return t
    
    	case _Lbrack:
    		// '[' oexpr ']' ntype
    		// '[' _DotDotDot ']' ntype
    		p.next()
    		if p.got(_Rbrack) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    			d.ldr.AttrNotInSymbolTable(idx) ||
    			d.ldr.SymVersion(idx) >= sym.SymVerStatic {
    			continue
    		}
    		t := d.ldr.SymType(idx)
    		switch t {
    		case sym.SRODATA, sym.SDATA, sym.SNOPTRDATA, sym.STYPE, sym.SBSS, sym.SNOPTRBSS, sym.STLSBSS:
    			// ok
    		default:
    			continue
    		}
    		// Skip things with no type, unless it's a dictionary
    		gt := d.ldr.SymGoType(idx)
    		if gt == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    	pred := func(b bool, s string) {
    		if b {
    			if buf.Len() > 0 {
    				buf.WriteString(", ")
    			}
    			buf.WriteString(s)
    		}
    	}
    
    	pred(tv.IsVoid(), "void")
    	pred(tv.IsType(), "type")
    	pred(tv.IsBuiltin(), "builtin")
    	pred(tv.IsValue() && tv.Value != nil, "const")
    	pred(tv.IsValue() && tv.Value == nil, "value")
    	pred(tv.IsNil(), "nil")
    	pred(tv.Addressable(), "addressable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    	pred := func(b bool, s string) {
    		if b {
    			if buf.Len() > 0 {
    				buf.WriteString(", ")
    			}
    			buf.WriteString(s)
    		}
    	}
    
    	pred(tv.IsVoid(), "void")
    	pred(tv.IsType(), "type")
    	pred(tv.IsBuiltin(), "builtin")
    	pred(tv.IsValue() && tv.Value != nil, "const")
    	pred(tv.IsValue() && tv.Value == nil, "value")
    	pred(tv.IsNil(), "nil")
    	pred(tv.Addressable(), "addressable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top