Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 476 for _Merge (0.23 sec)

  1. src/internal/profile/merge.go

    import (
    	"fmt"
    	"sort"
    	"strconv"
    	"strings"
    )
    
    // Merge merges all the profiles in profs into a single Profile.
    // Returns a new profile independent of the input profiles. The merged
    // profile is compacted to eliminate unused samples, locations,
    // functions and mappings. Profiles must have identical profile sample
    // and period types or the merge will fail. profile.Period of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    func (p *Profile) Compact() *Profile {
    	p, _ = Merge([]*Profile{p})
    	return p
    }
    
    // Merge merges all the profiles in profs into a single Profile.
    // Returns a new profile independent of the input profiles. The merged
    // profile is compacted to eliminate unused samples, locations,
    // functions and mappings. Profiles must have identical profile sample
    // and period types or the merge will fail. profile.Period of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/merge-fusion-with-dequantize.mlir

    // RUN: stablehlo-quant-opt %s -stablehlo-merge-fusion-with-dequantize -split-input-file -verify-diagnostics | FileCheck %s
    
    // Merge fusion with dequantize for relu case.
    
    module attributes {tf_saved_model.semantics} {
      // CHECK-LABEL: func.func private @merge_relu_fusion
      func.func private @merge_relu_fusion(%arg0: tensor<1x4xf32>) -> tensor<1x3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 23:45:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu-merge-variables-with-execute.mlir

    // RUN: tf-opt -split-input-file -verify-diagnostics -tf-tpu-merge-variables-with-execute %s | FileCheck %s
    
    // Tests that the pass merges only variable reads/writes on the same device.
    
    // CHECK-LABEL: func @merge_same_device_variables
    // CHECK-SAME: %[[ARG_0:.*]]: tensor<*x!tf_type.resource<tensor<32xf32>>>
    // CHECK-SAME: %[[ARG_1:.*]]: tensor<*x!tf_type.resource<tensor<64xf32>>>
    // CHECK-SAME: %[[ARG_2:.*]]: tensor<*x!tf_type.resource<tensor<16xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. cmd/testdata/xl-meta-merge.zip

    Klaus Post <******@****.***> 1709920248 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. src/cmd/covdata/metamerge.go

    		}
    		if *verbflag >= 3 {
    			fmt.Printf("counter merge for %s fidx=%d\n", fd.Funcname, fnIdx)
    		}
    		// Merge.
    		err, overflow := mm.MergeCounters(gfp.Counters, counters)
    		if err != nil {
    			fatal("%v", err)
    		}
    		if overflow {
    			warn("uint32 overflow during counter merge")
    		}
    		mm.p.ctab[fnIdx] = gfp
    	} else {
    		if *verbflag >= 3 {
    			fmt.Printf("null merge for %s fidx %d\n", fd.Funcname, fnIdx)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/covdata/dump.go

    	}
    	d := &dstate{
    		cmd: cmd,
    		cm:  &cmerge.Merger{},
    	}
    	// For these modes (percent, pkglist, func, etc), use a relaxed
    	// policy when it comes to counter mode clashes. For a percent
    	// report, for example, we only care whether a given line is
    	// executed at least once, so it's ok to (effectively) merge
    	// together runs derived from different counter modes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. operator/pkg/util/merge_iop.go

    	Pilot           *componentSpec     `json:"pilot" patchStrategy:"merge"`
    	Cni             *componentSpec     `json:"cni" patchStrategy:"merge"`
    	Ztunel          *componentSpec     `json:"ztunnel" patchStrategy:"merge"`
    	IstiodRemote    *componentSpec     `json:"istiodRemote" patchStrategy:"merge"`
    	IngressGateways []*gatewaySpec     `json:"ingressGateways" patchStrategy:"merge" patchMergeKey:"name"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

            when:
            run("merge")
    
            then:
            result.assertTasksExecuted(":createFiles", ":merge")
            file("output/merged.txt").text == 'file1,file1'
    
            when:
            run("merge")
    
            then:
            result.assertTasksNotSkipped()
    
            when:
            file("file-source.txt").text = "new-file1"
            run("merge")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java

            Model source = Model.newBuilder().artifactId("SOURCE").build();
    
            Model merged = mavenMerger.merge(target, source, true, null);
            assertThat(merged.getArtifactId(), is("SOURCE"));
    
            merged = mavenMerger.merge(target, source, false, null);
            assertThat(merged.getArtifactId(), is("TARGET"));
        }
    
        @Test
        void mergeSameContributors() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top