Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for isExternal (0.21 sec)

  1. src/cmd/link/internal/ld/data.go

    			}
    			if target.Is386() && target.IsExternal() && target.IsELF {
    				nExtReloc++ // need two ELF relocations on 386, see ../x86/asm.go:elfreloc1
    			}
    			fallthrough
    		case objabi.R_CALL, objabi.R_PCREL:
    			if target.IsExternal() && rs != 0 && rst == sym.SUNDEFEXT {
    				// pass through to the external linker.
    				nExtReloc++
    				o = 0
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        // Find out the compose function
        auto compose_func_name = GetComposeFuncName(op->getName().getStringRef());
        auto compose_func = table.lookup<TFRFuncOp>(compose_func_name);
        if (!compose_func || compose_func.isExternal()) {
          // There are no decomposition methods defined for this op, skip.
          return WalkResult::advance();
        }
    
        // Make sure all the attributes are valid. An attribute is valid when it is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    	// mark all Go symbols local (not global) in the final executable.
    	// But when we're dynamically linking, we need all those global symbols.
    	if !ctxt.DynlinkingGo() && ctxt.IsExternal() && !ldr.AttrCgoExportStatic(x) && elfshnum != elf.SHN_UNDEF {
    		bind = elf.STB_LOCAL
    	}
    
    	if ctxt.LinkMode == LinkExternal && elfshnum != elf.SHN_UNDEF {
    		addr -= int64(xosect.Vaddr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

        override val isInline: Boolean get() = withValidityAssertion { false }
        override val isFun: Boolean get() = withValidityAssertion { false }
        override val isExternal: Boolean get() = withValidityAssertion { false }
        override val isActual: Boolean get() = withValidityAssertion { false }
        override val isExpect: Boolean get() = withValidityAssertion { false }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

        return;
      }
      TF::SideEffectAnalysis side_effect_analysis(module_op,
                                                  op_to_parallel_ids_map);
      for (auto func : module_op.getOps<func::FuncOp>()) {
        if (func.isExternal()) continue;
        const auto& analysis_for_func =
            side_effect_analysis.GetAnalysisForFunc(func);
        if (failed(UpdateAllControlDependencies(func, analysis_for_func))) {
          signalPassFailure();
          return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/match/matchers.go

    var NotVM = Not(VM)
    
    // External matches instances that have a custom DefaultHostHeader defined
    var External Matcher = func(i echo.Instance) bool {
    	return i.Config().IsExternal()
    }
    
    // NotExternal is equivalent to Not(External)
    var NotExternal = Not(External)
    
    // Naked matches instances with any subset marked with SidecarInject equal to false.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

    void ClusterFormationPass::runOnOperation() {
      auto module = getOperation();
      auto& side_effect_analysis = getAnalysis<TF::SideEffectAnalysis>();
    
      for (auto func : module.getOps<func::FuncOp>()) {
        if (func.isExternal()) continue;
        OpBuilder builder(func.getContext());
        const TF::SideEffectAnalysis::Info& info =
            side_effect_analysis.GetAnalysisForFunc(func);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/mips/asm.go

    	default:
    		return val
    	}
    }
    
    func archreloc(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, r loader.Reloc, s loader.Sym, val int64) (o int64, nExtReloc int, ok bool) {
    	rs := r.Sym()
    	if target.IsExternal() {
    		switch r.Type() {
    		default:
    			return val, 0, false
    
    		case objabi.R_ADDRMIPS, objabi.R_ADDRMIPSU:
    			// set up addend for eventual relocation via outer symbol.
    			_, off := ld.FoldSubSymbolOffset(ldr, rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

     public:
      void runOnOperation() override;
    };
    
    void SplitIntoIslandPerOpPass::runOnOperation() {
      func::FuncOp func = getOperation();
    
      if (func.isExternal()) {
        // Just ignore the op if this is an external func with no body.
        return;
      }
    
      tf_executor::GraphOp graph_op;
    
      if (llvm::hasSingleElement(func.front().without_terminator())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

      // Use a global path index across functions to make it easier to follow one
      // path for debugging purposes.
      int path_idx = 0;
      for (auto func : module.getOps<func::FuncOp>()) {
        if (func.isExternal()) continue;
        const auto& analysis_for_func =
            side_effect_analysis.GetAnalysisForFunc(func);
        CheckControlDependenciesForFunc(func, analysis_for_func, path_idx);
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top