Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for SplitV (0.14 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      // There should be two ops: the split and add in the original model.
      EXPECT_THAT(*readonly_subgraph->operators(), SizeIs(2));
      EXPECT_THAT(subgraph->operators, SizeIs(2));
      const auto& split = subgraph->operators[0];
      const auto& add = subgraph->operators[1];
      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[split->opcode_index].get()),
                  Eq(BuiltinOperator_SPLIT));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        # 'k8s_container.<namespace_name>.<pod_name>.<container_name>'.
        "logging.googleapis.com/local_resource_id" ${"k8s_container.#{tag_suffix[4].rpartition('.')[0].split('_')[1]}.#{tag_suffix[4].rpartition('.')[0].split('_')[0]}.#{tag_suffix[4].rpartition('.')[0].split('_')[2].rpartition('-')[0]}"}
        # Rename the field 'log' to a more generic field 'message'. This way the
        # fluent-plugin-google-cloud knows to flatten the field as textPayload
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    	encodedResource := req.URL.RawPath
    	encodedQuery := req.URL.RawQuery
    	if encodedResource == "" {
    		splits := strings.SplitN(req.URL.Path, "?", 2)
    		encodedResource = splits[0]
    		if len(splits) == 2 {
    			encodedQuery = splits[1]
    		}
    	}
    
    	unescapedQueries, err := unescapeQueries(encodedQuery)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    			canRace = false
    		}
    	}
    
    	if n, limited := base.NetLimit(); limited && n > 0 {
    		// Split the network limit into chunks, so that each parallel script can
    		// have one chunk. We want to run as many parallel scripts as possible, but
    		// also want to give each script as high a limit as possible.
    		// We arbitrarily split by sqrt(n) to try to balance those two goals.
    		netTestLimit := int(math.Sqrt(float64(n)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation.go

    	if len(completedIndexesStr) == 0 || len(failedIndexesStr) == 0 {
    		return nil
    	}
    	completedIndexesIntervals := strings.Split(completedIndexesStr, ",")
    	failedIndexesIntervals := strings.Split(failedIndexesStr, ",")
    	var completedPos, failedPos int
    	cX, cY, cErr := parseIndexInterval(completedIndexesIntervals[completedPos], completions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		// assignments, so it won't use much stack space, so
    		// it's OK to not split the stack. Splitting the stack
    		// can run into a bug in clang (as of 2018-11-09):
    		// this is a leaf function, and when clang sees a leaf
    		// function it won't emit the split stack prologue for
    		// the function. However, if this function refers to a
    		// non-split-stack function, which will happen if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      sharding = sharding_attr.str();
      return mlir::success();
    }
    
    // Create an `_XlaHostComputeMlir` for the map_outside_compilation case. Inputs
    // are converted from split sharding to MANUAL sharding and outputs are
    // converted from MANUAL sharding to split sharding. Set `common_split_sharding`
    // if it has not yet been set. Output `full_outputs`, which is the outputs of
    // the `_XlaHostComputeMlir` and add the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    		// metadata about the release, one item per line.
    		if i := strings.Index(b, "\n"); i >= 0 {
    			rest := b[i+1:]
    			b = chomp(b[:i])
    			for _, line := range strings.Split(rest, "\n") {
    				f := strings.Fields(line)
    				if len(f) == 0 {
    					continue
    				}
    				switch f[0] {
    				default:
    					fatalf("VERSION: unexpected line: %s", line)
    				case "time":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.client;
    
    import static org.codelibs.core.stream.StreamUtil.split;
    import static org.codelibs.core.stream.StreamUtil.stream;
    import static org.codelibs.opensearch.runner.OpenSearchRunner.newConfigs;
    import static org.opensearch.core.action.ActionListener.wrap;
    
    import java.io.File;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
    
            List<File> jars = new ArrayList<>();
    
            if (extClassPath != null && !extClassPath.isEmpty()) {
                for (String jar : extClassPath.split(File.pathSeparator)) {
                    File file = resolveFile(new File(jar), cliRequest.workingDirectory);
    
                    slf4jLogger.debug("  included '{}'", file);
    
                    jars.add(file);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top