Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for vtoc (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

      XLA_Shape new_shape_c = {};
      TfTpu_ExecutorApiFn *executor = stream_executor::tpu::ExecutorApiFn();
      if (!stream_executor::tpu::IsInitialized(executor)) {
        return failure();
      }
      ApiConverter::ToC(old_shape, &old_shape_c);
      executor->TpuTransferManager_GetInfeedLayoutFn(&old_shape_c, &new_shape_c);
      xla::Shape new_shape = ApiConverter::FromC(&new_shape_c);
      ApiConverter::Destroy(&old_shape_c);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/userguide_single.adoc

    :meta-name-twitter_description: {description}
    :meta-name-twitter_url: {docsUrl}/{gradleVersion}/userguide/{docname}.html
    :meta-name-twitter_image: {website}/images/gradle-256x256.png
    
    toc::[leveloffset=+2]
    
    [[part:about_gradle]]
    == **OVERVIEW**
    
    include::userguide.adoc[leveloffset=+2]
    include::about_manual.adoc[leveloffset=+2]
    
    '''
    
    [[part:releases]]
    == **RELEASES**
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/sym.go

    		panic("NumberSyms called without package path")
    	}
    
    	if ctxt.Headtype == objabi.Haix {
    		// Data must be in a reliable order for reproducible builds.
    		// The original entries are in a reliable order, but the TOC symbols
    		// that are added in Progedit are added by different goroutines
    		// that can be scheduled independently. We need to reorder those
    		// symbols reliably. Sort by name but use a stable sort, so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadmacho/ldmacho.go

    }
    
    type ldMachoDysymtab struct {
    	ilocalsym      uint32
    	nlocalsym      uint32
    	iextdefsym     uint32
    	nextdefsym     uint32
    	iundefsym      uint32
    	nundefsym      uint32
    	tocoff         uint32
    	ntoc           uint32
    	modtaboff      uint32
    	nmodtab        uint32
    	extrefsymoff   uint32
    	nextrefsyms    uint32
    	indirectsymoff uint32
    	nindirectsyms  uint32
    	extreloff      uint32
    	nextrel        uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadelf/ldelf.go

    				sb.SetType(sym.SNOPTRBSS)
    			} else {
    				sb.SetType(sym.SNOPTRDATA)
    			}
    
    		case elf.SHF_ALLOC + elf.SHF_EXECINSTR:
    			sb.SetType(sym.STEXT)
    		}
    
    		if sect.name == ".got" || sect.name == ".toc" {
    			sb.SetType(sym.SELFGOT)
    		}
    		if sect.type_ == elf.SHT_PROGBITS {
    			sb.SetData(sect.base[:sect.size])
    			sb.SetExternal(true)
    		}
    
    		sb.SetSize(int64(sect.size))
    		sb.SetAlign(int32(sect.align))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/runtime/os_aix.go

    )
    
    // funcDescriptor is a structure representing a function descriptor
    // A variable with this type is always created in assembler
    type funcDescriptor struct {
    	fn         uintptr
    	toc        uintptr
    	envPointer uintptr // unused in Golang
    }
    
    type mOS struct {
    	waitsema uintptr // semaphore for parking on locks
    	perrno   uintptr // pointer to tls errno
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    		}
    		for i := range ctxt.DotTOC {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    			if toc := ldr.Lookup(".TOC.", i); toc != 0 {
    				ldr.SetSymValue(toc, tocAddr)
    			}
    		}
    	}
    
    	return order
    }
    
    // layout assigns file offsets and lengths to the segments in order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. src/cmd/link/internal/ld/lib.go

    	if ctxt.IsPPC64() {
    		ctxt.mkArchSym("TOC", 0, &ctxt.TOC)
    
    		ctxt.DotTOC = make([]loader.Sym, ctxt.MaxVersion()+1)
    		for i := 0; i <= ctxt.MaxVersion(); i++ {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    			ctxt.mkArchSymVec(".TOC.", i, ctxt.DotTOC)
    		}
    	}
    	if ctxt.IsElf() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. docs/en/mkdocs.yml

      - about/index.md
      - alternatives.md
      - history-design-future.md
      - benchmarks.md
    - Help:
      - help/index.md
      - help-fastapi.md
      - contributing.md
    - release-notes.md
    markdown_extensions:
      toc:
        permalink: true
      markdown.extensions.codehilite:
        guess_lang: false
      mdx_include:
        base_path: docs
      admonition: null
      codehilite: null
      extra: null
      pymdownx.superfences:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. docs/vi/docs/index.md

    Những tính năng như:
    
    * **Nhanh**: Hiệu năng rất cao khi so sánh với **NodeJS** và **Go** (cảm ơn Starlette và Pydantic). [Một trong những Python framework nhanh nhất](#hieu-nang).
    * **Code nhanh**: Tăng tốc độ phát triển tính năng từ 200% tới 300%. *
    * **Ít lỗi hơn**: Giảm khoảng 40% những lỗi phát sinh bởi con người (nhà phát triển). *
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top