Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 317 for allee (0.09 sec)

  1. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/toplevelFunctionReferenceCallArg.kt

    fun callee(x: Int): Int {
        return 598 + x
    }
    
    fun test() {
        (::callee)(<expr>657</expr>) + 45
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 100 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      }
    
      // Clone the callee before making changes.
      SmallString<64> name_base = callee.getName();
      auto module = callee->getParentOfType<ModuleOp>();
      name_base += "_resource_lifted";
      auto name = name_base;
      callee = callee.clone();
      callee.setPrivate();
      callee.setName(mlir::StringAttr::get(callee->getContext(), name));
      SymbolTable(module).insert(callee);
      result->lifted_callee = callee;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.cc

        auto sym = mlir::dyn_cast<SymbolRefAttr>(attr.getValue());
        if (!sym) continue;
        auto callee = symtab.lookup<func::FuncOp>(sym.getRootReference());
        if (!callee) {
          // This is not expected to happen in practice.
          return op->emitError()
                 << "Cannot find function " << sym.getRootReference();
        }
        callees.push_back(callee);
      }
      return success();
    }
    
    bool HasSingleBlock(func::FuncOp func) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		// interfaces and implementations are mutually exclusive,
    		// devirtualization can still select the correct callee for
    		// each.
    		//
    		// If they were not mutually exclusive (for example, two Add
    		// calls), then we could not definitively select the correct
    		// callee.
    		val += m.Multiply(42, selectA(i).Add(one(i), 2))
    	}
    	return val
    }
    
    type AddFunc func(int, int) int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. src/runtime/cgo/abi_ppc64x.h

    	LVX	(rtmp)(R1), V30       \
    	MOVD	$(offset+16*11), rtmp \
    	LVX	(rtmp)(R1), V31
    
    // LR and CR are saved in the caller's frame. The callee must
    // make space for all other callee-save registers.
    #define SAVE_ALL_REG_SIZE (SAVE_GPR_SIZE+SAVE_FPR_SIZE+SAVE_VR_SIZE)
    
    // Stack a frame and save all callee-save registers following the
    // host OS's ABI. Fortunately, this is identical for AIX, ELFv1, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.h

          }
          llvm::SmallVector<func::FuncOp> callees;
          if (GetCallees(op, symtab, callees).failed()) {
            return WalkResult::interrupt();
          }
          for (auto callee : callees) {
            worklist.push(callee);
          }
          return WalkResult::advance();
        });
        if (result.wasInterrupted()) return failure();
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 16 06:18:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

              ArrayRef<func::FuncOp> callees, const PerFunctionResult& caller_res) {
            for (func::FuncOp callee : callees) {
              assert(callee);
              auto& callee_res = per_function_results.find(callee)->getSecond();
              bool callee_needs_recompute = false;
              for (BlockArgument arg : filter_resources(callee.getArguments())) {
                Value arg_operand = caller_operands[arg.getArgNumber()];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK-SAME: callee = @main_stream_0
      %handle_0 = mlrt.async(%input0, %promise_b)
        {callee = @main_stream_0} :
        (tensor<i32>, !mlrt.promise) -> !mlrt.async_handle
      // CHECK: [[handle_1:%.*]] = mlrt.async([[input1]], [[promises]]#1, [[promises]]#2)
      // CHECK-SAME: callee = @main_stream_1
      %handle_1 = mlrt.async(%input1, %promise_c, %promise_d)
        {callee = @main_stream_1} :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. src/cmd/internal/pgo/serialize_test.go

    		if !ok {
    			break
    		}
    		if strings.ContainsAny(caller, " \r\n") {
    			t.Skip("caller contains space or newline")
    		}
    
    		callee, ok := consumeString()
    		if !ok {
    			break
    		}
    		if strings.ContainsAny(callee, " \r\n") {
    			t.Skip("callee contains space or newline")
    		}
    
    		line, ok := consumeInt64()
    		if !ok {
    			break
    		}
    		weight, ok := consumeInt64()
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

      if (lowered_callee != callee) {
        if (!info.signature_change) {
          // Signature is not modified. We do not need to keep two copies.
          lowered_callee.setName(
              StringAttr::get(callee->getContext(), callee.getName()));
          callee.erase();
        } else {
          // Add the clone with a new name.
          lowered_callee.setName(StringAttr::get(
              callee->getContext(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
Back to top