Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 723 for cloning (0.16 sec)

  1. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

      for (const Edge* e : in_edges) {
        Node* input = e->src();
        TF_ASSIGN_OR_RETURN(bool is_small_constant, IsSmallConstant(input));
        if (is_small_constant && input->out_edges().size() != 1) {
          VLOG(2) << "Cloning small constant " << input->name();
          TF_ASSIGN_OR_RETURN(Node* const input_cloned, CloneNode(name_set, input));
          if (e->IsControlEdge()) {
            graph_->AddControlEdge(input_cloned, e->dst());
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. fastapi/utils.py

    ) -> ModelField:
        if PYDANTIC_V2:
            return field
        # cloned_types caches already cloned types to support recursive models and improve
        # performance by avoiding unnecessary cloning
        if cloned_types is None:
            cloned_types = _CLONED_TYPES_CACHE
    
        original_type = field.type_
        if is_dataclass(original_type) and hasattr(original_type, "__pydantic_model__"):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    class HasStaticShapeAtDimsConstraint<string dims> : Constraint<
      CPred<"HasStaticShapeAtDims($0, {"# dims #"})">>;
    
    // The rewrite rule cannot replace a value with itself, so we work around
    // by cloning the root op to replicate that value. The old op will get folded.
    def CloningOpResult : NativeCodeCall<
      "$_builder.clone(*op0)->getOpResult(0)">;
    
    // Same as CloningOpResult but is used for ops with multiple results.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    Just follow these steps:
    
    === Clone the https://github.com/gradle/gradle-site-plugin[Gradle Site Plugin] repository
    
    [listing.terminal.sample-command]
    ----
    $ git clone https://github.com/gradle/gradle-site-plugin.git
    Cloning into 'gradle-site-plugin'...
    $ cd gradle-site-plugin
    ----
    
    === Build the project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/lockosthread.go

    	// thread IDs, it does this by unsharing state on that thread. This way, it
    	// also detects whether new threads were cloned from the dead thread, and not
    	// from a clean thread. Cloning from a locked thread is undesirable since
    	// cloned threads will inherit potentially unwanted OS state.
    	//
    	// unshareFs, getcwd, and chdir("/tmp") are only guaranteed to work on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	// identical so pass *IfreqData directly.
    	return ioctlPtr(fd, req, unsafe.Pointer(value))
    }
    
    // IoctlKCMClone attaches a new file descriptor to a multiplexor by cloning an
    // existing KCM socket, returning a structure containing the file descriptor of
    // the new socket.
    func IoctlKCMClone(fd int) (*KCMClone, error) {
    	var info KCMClone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      if (original.getRank() != updated.getRank()) return false;
    
      // Refine if the updated type is bounded.
      return IsBounded(updated);
    }
    
    // Propagates more refined type by cloning op using the new operands. This
    // allows all rewrite patterns that requires refined types to work without
    // requiring a rewrite to the conversion pattern. Declarative rewrite pattern
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    Just follow these steps:
    
    === Clone the https://github.com/gradle/gradle-site-plugin[Gradle Site Plugin] repository
    
    [listing.terminal.sample-command]
    ----
    $ git clone https://github.com/gradle/gradle-site-plugin.git
    Cloning into 'gradle-site-plugin'...
    $ cd gradle-site-plugin
    ----
    
    === Build the project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. ReadMe.md

    It is recommended to use the latest released version of Intellij IDEA (Community or Ultimate Edition). You can download IntelliJ IDEA [here](https://www.jetbrains.com/idea/download).
    
    After cloning the project, import the project in IntelliJ by choosing the project directory in the Open project dialog.
    
    For handy work with compiler tests it's recommended to use [
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    Just follow these steps:
    
    === Clone the https://github.com/gradle/gradle-site-plugin[Gradle Site Plugin] repository
    
    [listing.terminal.sample-command]
    ----
    $ git clone https://github.com/gradle/gradle-site-plugin.git
    Cloning into 'gradle-site-plugin'...
    $ cd gradle-site-plugin
    ----
    
    === Build the project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top