Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Concatenates (0.25 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/cc/quantization_unit_loc.cc

    namespace {
    
    // Prefix and suffix to the QuantizationUnit string representation.
    constexpr std::string_view kQuantizationUnitPrefix = "QuantizationUnit(";
    constexpr std::string_view kQuantizationUnitSuffix = ")";
    
    // Concatenates node name and func name with a "@" separator.
    std::string ConcatNodeAndFuncName(std::string_view node_name,
                                      std::string_view func_name) {
      return absl::StrCat(node_name, "@", func_name);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. cmd/importverifier/importverifier.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to decode packages: %v", err)
    	}
    
    	return packages, nil
    }
    
    func decodePackages(r io.Reader) ([]Package, error) {
    	// `go list -json` concatenates package definitions
    	// instead of emitting a single valid JSON, so we
    	// need to stream the output to decode it into the
    	// data we are looking for instead of just using a
    	// simple JSON decoder on stdout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/destination_rule.go

    // each config will result in a final dest rule set (*.foo.com, and *.com).
    //
    // The following is the merge logic:
    // 1. Unique subsets (based on subset name) are concatenated to the original rule's list of subsets
    // 2. If the original rule did not have any top level traffic policy, traffic policies from the new rule will be
    // used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. api/README

    warning output from the go api tool. Each file should be named
    nnnnn.txt, after the issue number for the accepted proposal.
    (The #nnnnn suffix must also appear at the end of each line in the file;
    that will be preserved when next/*.txt is concatenated into go1.XX.txt.)
    
    When you add a file to the api/next directory, you must add at least one file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

        /**
         * Adds an output entry to the group.
         */
        public void addOutput(String output) {
            outputs.add(output);
        }
    
        /**
         * Returns concatenated non-empty output entries.
         */
        public String getOutput() {
            List<String> nonEmptyOutputs = filter(outputs, string -> !string.equals(""));
            return join("\n", nonEmptyOutputs);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize.mlir

      %2 = "stablehlo.concatenate"(%0, %1) {dimension = 0 : i64} : (tensor<?xf32>, tensor<?xf32>) -> tensor<?xf32>
      %3 = "quantfork.stats"(%2) {layerStats = dense<[-0.83811146, 2.4960899]> : tensor<2xf32>} : (tensor<?xf32>) -> tensor<?xf32>
      %4 = "quantfork.stats"(%arg2) {layerStats = dense<[-1.5726943, 1.07351148]> : tensor<2xf32>} : (tensor<?xf32>) -> tensor<?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 19:52:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

       * position + 8. The array must have at least 8 bytes from offset (inclusive).
       *
       * @param input the input bytes
       * @param offset the offset into the array at which to start
       * @return a long of a concatenated 8 bytes
       */
      static long load64(byte[] input, int offset) {
        // We don't want this in production code as this is the most critical part of the loop.
        assert input.length >= offset + 8;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. pkg/kubelet/images/image_manager.go

    	_, tag, digest, err := parsers.ParseImageName(image)
    	if err != nil {
    		return "", err
    	}
    	// we just concatenate the image name with the default tag here instead
    	if len(digest) == 0 && len(tag) > 0 && !strings.HasSuffix(image, ":"+tag) {
    		// we just concatenate the image name with the default tag here instead
    		// of using dockerref.WithTag(named, ...) because that would cause the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/net/http/routing_index_test.go

    func genChoice(choices []string) generator {
    	return func(collect func(string)) {
    		for _, c := range choices {
    			collect(c)
    		}
    	}
    }
    
    // genConcat2 generates the cross product of the strings of g1 concatenated
    // with those of g2.
    func genConcat2(g1, g2 generator) generator {
    	return func(collect func(string)) {
    		g1(func(s1 string) {
    			g2(func(s2 string) {
    				collect(s1 + s2)
    			})
    		})
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/LittleEndianByteArray.java

       * position + 8. The array must have at least 8 bytes from offset (inclusive).
       *
       * @param input the input bytes
       * @param offset the offset into the array at which to start
       * @return a long of a concatenated 8 bytes
       */
      static long load64(byte[] input, int offset) {
        // We don't want this in production code as this is the most critical part of the loop.
        assert input.length >= offset + 8;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top