Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,399 for _Merge (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/ref-while-loop.mlir

        %3:3 = tf_executor.Merge %2#0, %0#0 : tensor<*x!tf_type.int32ref> {device = "", N = 2, T = "tfdtype$DT_INT32"} loc("while/Merge")
        %4:2 = tf_executor.island(%3#2) wraps "tf.Const"() {device = "", dtype = "tfdtype$DT_INT32", value = dense<10> : tensor<i32>} : () -> tensor<i32> loc("while/Less/y")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

            // given
            mockGitOperation(listOf("git", "fetch", "origin", "master", "release"), "")
            mockGitOperation(listOf("git", "merge-base", "origin/master", "HEAD"), "master-fork-point")
            mockGitOperation(listOf("git", "merge-base", "origin/release", "HEAD"), "release-fork-point")
            mockGitOperation(listOf("git", "show", "master-fork-point:version.txt"), "5.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/registry_test.go

    		t.Run(scenario.name, func(t *testing.T) {
    			err := scenario.primaryRegistry.Merge(scenario.registryToMerge)
    
    			if (err == nil) == scenario.shouldError {
    				t.Errorf("Merge() shouldError is: %v, however err is: %v.", scenario.shouldError, err)
    				return
    			}
    
    			if !isRegistryEqual(scenario.expected, scenario.primaryRegistry) {
    				t.Errorf("Merge(). Expected %v. Got %v instead.", scenario.expected, scenario.primaryRegistry)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      Operation* const insert_point;
    
      // The set of islands that are to be merged together.
      SmallVector<IslandOp> islands;
    };
    
    // This structure contains all of the merge decisions for islands within a
    // graph. We compute which islands to merge first, so that we don't need to
    // recursively mutate the IR (resulting in quadratic behavior when moving
    // operations). A rough sketch of the coarsening algorithm is shown below:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/project/artifact/ProjectArtifactMetadata.java

        }
    
        public void merge(ArtifactMetadata metadata) {
            ProjectArtifactMetadata m = (ProjectArtifactMetadata) metadata;
            if (!m.file.equals(file)) {
                throw new IllegalStateException("Cannot add two different pieces of metadata for: " + getKey());
            }
        }
    
        public void merge(org.apache.maven.repository.legacy.metadata.ArtifactMetadata metadata) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/types/patch.go

    // dedicated to.
    type PatchType string
    
    const (
    	JSONPatchType           PatchType = "application/json-patch+json"
    	MergePatchType          PatchType = "application/merge-patch+json"
    	StrategicMergePatchType PatchType = "application/strategic-merge-patch+json"
    	ApplyPatchType          PatchType = "application/apply-patch+yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 04 21:51:48 UTC 2019
    - 1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

        ProjectBuildingRequest setRepositorySession(RepositorySystemSession repositorySession);
    
        /**
         * Sets the merge mode used to combine repositories declared in the POM with the repositories specified in this
         * request.
         *
         * @param mode The repository merge mode, must not be {@code null}.
         * @return This request for chaining, never {@code null}.
         * @see #setRemoteRepositories(List)
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/git/tagtests.txt

    git branch -m master
    git branch b
    
    git add v0.2.1
    git commit -m 'v0.2.1'
    git tag 'v0.2.1'
    
    git checkout b
    git add 'v0.2.2'
    git commit -m 'v0.2.2'
    git tag 'v0.2.2'
    
    git checkout master
    git merge b -m 'merge'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    59356c8cd18c5fe9a598167d98a6843e52d57952 refs/heads/b
    c7818c24fa2f3f714c67d0a6d3e411c85a518d1f refs/heads/master
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 913 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/end2end/control_flow_v1.pbtxt

        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "_class"
        value {
          list {
            s: "loc:@Const"
          }
        }
      }
    }
    node {
      name: "cond/Merge"
      op: "Merge"
      input: "cond/Add"
      input: "cond/MatMul"
      attr {
        key: "N"
        value {
          i: 2
        }
      }
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 23 21:23:31 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_cluster_util_test.cc

      ops::internal::Enter enter(s.WithOpName("init_value"), init_value, loop_name);
      ops::Merge merge(s.WithOpName("merge"), {init_value, init_value});
      Output next_iteration =
          ops::NextIteration(s.WithOpName("next_itr"), merge.output);
      return s.graph()->UpdateEdge(next_iteration.node(), 0, merge.output.node(),
                                   1);
    }
    
    TEST(NodesRelatedToRefVariables, Cycles) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top