Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 667 for allee (4.22 sec)

  1. 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)
  2. 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)
  3. test/abi/defer_aggregate.go

    package main
    
    const p0exp = "foo"
    const p1exp = 10101
    const p2exp = 3030303
    const p3exp = 505050505
    const p4exp = 70707070707
    
    //go:noinline
    //go:registerparams
    func callee(p0 string, p1 uint64, p2 uint64, p3 uint64, p4 uint64) {
    	if p0 != p0exp {
    		panic("bad p0")
    	}
    	if p1 != p1exp {
    		panic("bad p1")
    	}
    	if p2 != p2exp {
    		panic("bad p2")
    	}
    	if p3 != p3exp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 31 20:21:57 UTC 2021
    - 846 bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/stateful-attribute.pbtxt

        }
      }
    }
    versions {
      producer: 29
      min_consumer: 12
    }
    
    # Find PartitionedCall ops in main and match the callee name.
    # CHECK: func @main
    # CHECK: "tf.PartitionedCall"
    # CHECK-SAME: f = @[[FUNCTION_FOO:[a-zA-Z0-9_]*]]
    
    # Find callee and verify it has the stateful attribute set.
    # CHECK: func private @[[FUNCTION_FOO]]
    # CHECK-SAME: attributes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-value-attr.pbtxt

          value {
          }
        }
      }
    }
    versions {
      producer: 85
      min_consumer: 12
    }
    
    # Match partitioned call in main and capture the callee name.
    # CHECK-LABEL: func @main
    # CHECK: tf.PartitionedCall
    # CHECK-SAME: f = @[[FUNCTION:[a-zA-Z0-9_]*]]
    
    # Verify that callee has the unit attribute tf._input_shapes.
    # CHECK: func private @[[FUNCTION]]
    # CHECK: attributes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. docs/de/docs/tutorial/dependencies/global-dependencies.md

        ```Python hl_lines="15"
        {!> ../../../docs_src/dependencies/tutorial012.py!}
        ```
    
    Und alle Ideen aus dem Abschnitt über das [Hinzufügen von `dependencies` zu den *Pfadoperation-Dekoratoren*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank} gelten weiterhin, aber in diesem Fall für alle *Pfadoperationen* in der Anwendung.
    
    ## Abhängigkeiten für Gruppen von *Pfadoperationen*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top