Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pflr (0.14 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      std::unique_ptr<ProcessFunctionLibraryRuntime> pflr(
          new ProcessFunctionLibraryRuntime(
              device_mgr.get(), options.session_options->env,
              /*config=*/config, TF_GRAPH_DEF_VERSION, library,
              config->graph_options().optimizer_options()));
      FunctionLibraryRuntime* flr =
          pflr->GetFLR("/job:localhost/replica:0/task:0/device:CPU:0");
      if (flr == nullptr) {
        return errors::Internal(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      OptimizerOptions opts;
      std::unique_ptr<ProcessFunctionLibraryRuntime> pflr(
          new ProcessFunctionLibraryRuntime(nullptr, env_, /*config=*/nullptr,
                                            TF_GRAPH_DEF_VERSION, flib_def_, opts));
      FunctionLibraryRuntime* lib_runtime =
          pflr->GetFLR(ProcessFunctionLibraryRuntime::kDefaultFLRDevice);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. src/debug/elf/file_test.go

    		},
    		[]ProgHeader{
    			{PT_PHDR, PF_R + PF_X, 0x40, 0x400040, 0x400040, 0x1c0, 0x1c0, 0x8},
    			{PT_INTERP, PF_R, 0x200, 0x400200, 0x400200, 0x1c, 0x1c, 1},
    			{PT_LOAD, PF_R + PF_X, 0x0, 0x400000, 0x400000, 0x684, 0x684, 0x200000},
    			{PT_LOAD, PF_R + PF_W, 0x688, 0x600688, 0x600688, 0x210, 0x218, 0x200000},
    			{PT_DYNAMIC, PF_R + PF_W, 0x6b0, 0x6006b0, 0x6006b0, 0x1a0, 0x1a0, 0x8},
    			{PT_NOTE, PF_R, 0x21c, 0x40021c, 0x40021c, 0x20, 0x20, 0x4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    		if tlssize != 0 {
    			ph := newElfPhdr()
    			ph.Type = elf.PT_TLS
    			ph.Flags = elf.PF_R
    			ph.Memsz = tlssize
    			ph.Align = uint64(ctxt.Arch.RegSize)
    		}
    	}
    
    	if ctxt.HeadType == objabi.Hlinux || ctxt.HeadType == objabi.Hfreebsd {
    		ph := newElfPhdr()
    		ph.Type = elf.PT_GNU_STACK
    		ph.Flags = elf.PF_W + elf.PF_R
    		ph.Align = uint64(ctxt.Arch.RegSize)
    	} else if ctxt.HeadType == objabi.Hopenbsd {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    	OP_LD_R12_R12    = OP_LD | 12<<21 | 12<<16    // ld r12,0(r12)
    	OP_MTCTR_R12     = OP_MTCTR | 12<<21          // mtctr r12
    	OP_MFLR_R12      = OP_MFLR | 12<<21           // mflr r12
    	OP_MFLR_R0       = OP_MFLR | 0<<21            // mflr r0
    	OP_MTLR_R0       = OP_MTLR | 0<<21            // mtlr r0
    
    	// This is a special, preferred form of bcl to obtain the next
    	// instruction address (NIA, aka PC+4) in LR.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    func (u *unwinder) next() {
    	frame := &u.frame
    	f := frame.fn
    	gp := u.g.ptr()
    
    	// Do not unwind past the bottom of the stack.
    	if frame.lr == 0 {
    		u.finishInternal()
    		return
    	}
    	flr := findfunc(frame.lr)
    	if !flr.valid() {
    		// This happens if you get a profiling interrupt at just the wrong time.
    		// In that context it is okay to stop early.
    		// But if no error flags are set, we're doing a garbage collection and must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top