Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for pflr (0.1 sec)

  1. src/runtime/cgo/gcc_linux_ppc64x.S

     * Called from standard ppc64 C ABI, where r2, r14-r31, f14-f31 are
     * callee-save, so they must be saved explicitly.
     */
    .globl crosscall_ppc64
    crosscall_ppc64:
    	// Start with standard C stack frame layout and linkage
    	mflr	%r0
    	std	%r0, 16(%r1)	// Save LR in caller's frame
    	mfcr	%r0
    	std	%r0, 8(%r1)	// Save CR in caller's frame
    	stdu	%r1, -FRAME_SIZE(%r1)
    	std	%r2, 24(%r1)
    
    	FOR_EACH_GPR std
    	FOR_EACH_FPR stfd
    	FOR_EACH_VR stvx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:03:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // A function which expects R2 to hold TOC, and has a distinct local entry.
    	.globl	toc_func
    	.type	toc_func, @function
    toc_func:
    	addis	2,12,.TOC.-toc_func@ha
    	addi	2,2,.TOC.-toc_func@l
    	.localentry toc_func, .-toc_func
    	mflr	0
    	std	0,16(1)
    	stdu	1,-32(1)
    
    	// Call a NOTOC function which clobbers R2.
    	bl	notoc_nor2_func
    	nop
    
    	// Call libc random. This should generate a TOC relative plt stub.
    	bl	random
    	nop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/pjrt_compile_util.h

    // computation.
    // - `flr`: the FunctionLibraryRuntime for the `function`.
    Status CompileToPjRtLoadedExecutable(
        const DeviceBase* device, const XlaPlatformInfo& platform_info,
        const NameAttrList& function,
        const std::vector<XlaCompiler::Argument>& args,
        DeviceCompileMode compile_mode, bool has_ref_vars,
        bool may_alias_resource_update, FunctionLibraryRuntime* flr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/pjrt_compile_util_test.cc

      TF_EXPECT_OK(CompileToPjRtLoadedExecutable(
          device, platform_info, function, SampleArgsForAddXY(),
          DeviceCompileMode::kStrict, /*has_ref_vars=*/true,
          /*may_alias_resource_update=*/true, device_setup.flr(), &resource_mgr,
          &compilation_result, &pjrt_client, &pjrt_executable));
    
      EXPECT_TRUE(compilation_result != nullptr);
      EXPECT_TRUE(pjrt_executable != nullptr);
      EXPECT_TRUE(pjrt_client != nullptr);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 21 23:21:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_aix_ppc64.S

      .globl .crosscall_ppc64
      .csect crosscall_ppc64[DS]
    crosscall_ppc64:
      .llong .crosscall_ppc64, TOC[tc0], 0
      .csect .text[PR]
    .crosscall_ppc64:
    	// Start with standard C stack frame layout and linkage
    	mflr	0
    	std	0, 16(1)	// Save LR in caller's frame
    	std	2, 40(1)	// Save TOC in caller's frame
    	bl	saveregs
    	stdu	1, -296(1)
    
    	// Set up Go ABI constant registers
    	// Must match _cgo_reginit in runtime package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_platform_info.h

    // the persistor used in the DeviceCompiler. The platform ID from
    // `platform_info` must not be null in CPU case.
    Status BuildXlaDeviceCompiler(
        DeviceBase* dev, FunctionLibraryRuntime* flr,
        const XlaPlatformInfo& platform_info, DeviceType compilation_device_type,
        DeviceCompiler<xla::LocalExecutable, xla::LocalClient>**
            xla_device_compiler);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.h

        const NameAttrList& func_name_attrs, const string& new_func_name,
        const string& host_graph_func_name,
        const std::map<string, int>& host_compute_core, FunctionLibraryRuntime* flr,
        FunctionLibraryDefinition* fld, std::vector<string>* shape_inference_graphs,
        bool* has_outside_compilation);
    
    // Rewrites XLA computation in `clusters` to replace outside compilation nodes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          host_compute_core, flr, fld, shape_inference_graphs,
          &then_branch_has_outside_compilation));
      TF_RETURN_IF_ERROR(ExtractOutsideCompilationForFunction(
          xla_cluster_attr_name, outside_compilation_attr_name, xla_cluster_name,
          else_branch, else_branch_xla_func_name, else_branch_host_func_name,
          host_compute_core, flr, fld, shape_inference_graphs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/compilability_check_util_test.cc

      }
    
      FunctionLibraryRuntime* GetFunctionLibraryRuntime() {
        OptimizerOptions opts;
        pflr_ = std::make_unique<ProcessFunctionLibraryRuntime>(
            nullptr, Env::Default(), /*config=*/nullptr, TF_GRAPH_DEF_VERSION,
            flib_def_.get(), opts);
    
        return pflr_->GetFLR(ProcessFunctionLibraryRuntime::kDefaultFLRDevice);
      }
    
      RecursiveCompilabilityChecker::OperationFilter op_filter_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  10. 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)
Back to top