Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for split_at (0.24 sec)

  1. docs/debugging/xl-meta/main.go

    										}
    									}
    									reconstructAbleConfig = valid >= m.data-hasParity && valid < m.data
    									startOffset = offset
    									offset++
    									continue
    								}
    								for shardIdx, ok := range shardConfig {
    									if ok != 0 {
    										shards[shardIdx] = append(shards[shardIdx], splitData[shardIdx][offset])
    									}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

    LogicalResult UnrollSplit::matchAndRewrite(TFL::SplitOp split_op,
                                               PatternRewriter& rewriter) const {
      auto num_splits = split_op.getNumSplits();
      auto input = split_op.getValue();
      auto input_type = mlir::dyn_cast<RankedTensorType>(input.getType());
      if (input_type == nullptr || !input_type.hasStaticShape()) return failure();
    
      for (auto result : split_op.getResults()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

      }
    
      // Creates a split op that splits |src_input| along |split_dimension|.
      llvm::SmallVector<mlir::Type, 4> output_types(num_split, output_type);
      *split_op = builder->create<mlir::TF::SplitOp>(
          location, output_types, split_dimension_op.getOutput(), src_input);
      (*split_op)->setAttr(
          kNumSplitAttr,
          builder->getIntegerAttr(builder->getIntegerType(32), num_split));
      return mlir::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/helper_test.go

    }
    
    func header() http.Header {
    	header := http.Header{}
    	header.Set("Content-Type", runtime.ContentTypeJSON)
    	return header
    }
    
    // splitPath returns the segments for a URL path.
    func splitPath(path string) []string {
    	path = strings.Trim(path, "/")
    	if path == "" {
    		return []string{}
    	}
    	return strings.Split(path, "/")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    func RequestInfoFrom(ctx context.Context) (*RequestInfo, bool) {
    	info, ok := ctx.Value(requestInfoKey).(*RequestInfo)
    	return info, ok
    }
    
    // splitPath returns the segments for a URL path.
    func splitPath(path string) []string {
    	path = strings.Trim(path, "/")
    	if path == "" {
    		return []string{}
    	}
    	return strings.Split(path, "/")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            BY_PATH = new Cache(ROOT);
        }
    
        private final String path;
        private final String[] components;
        private final ModelPath parent;
    
        public ModelPath(String path) {
            this(path, splitPath(path));
        }
    
        private ModelPath(String path, String[] components) {
            // one should really avoid using this constructor as it is totally inefficient
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

        auto split_op = rewriter.create<TF::SplitOp>(loc, output_types,
                                                     split_dimension_op.getOutput(),
                                                     reshape_op.getOutput());
    
        // Squeeze each batch, i.e. reshape
        // [1, num_rows, num_cols] -> [num_rows, num_cols]
        for (const auto& split_value : split_op.getOutput()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-gpu.mlir

      %2:3 = "tfl.split_v"(%arg0, %0, %1) {num_splits = 3 : i32} : (tensor<?x13x13x85xf32>, tensor<3xi32>, tensor<i32>) -> (tensor<*xf32>, tensor<*xf32>, tensor<*xf32>)
      func.return %2#0, %2#1, %2#2 : tensor<*xf32>, tensor<*xf32>, tensor<*xf32>
    }
    
    // CHECK-LABEL: @unrollSplitVUnknownRankResults
    // CHECK-NOT: "tfl.slice"
    // CHECK: "tfl.split_v"
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pkg/test/echo/server/forwarder/config.go

    	// Extract the host from the headers and then remove it.
    	c.hostHeader = c.headers.Get(hostHeader)
    	c.headers.Del(hostHeader)
    
    	c.urlHost, c.urlPath = splitPath(c.Request.Url)
    
    	c.method = c.Request.Method
    	if c.method == "" {
    		c.method = "GET"
    	}
    
    	if i := strings.IndexByte(c.Request.Url, ':'); i > 0 {
    		c.scheme = scheme.Instance(strings.ToLower(c.Request.Url[0:i]))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. cmd/iam-object-store.go

    	policyDBUsersListKey    = "policydb/users/"
    	policyDBSTSUsersListKey = "policydb/sts-users/"
    	policyDBGroupsListKey   = "policydb/groups/"
    )
    
    // splitPath splits a path into a top-level directory and a child item. The
    // parent directory retains the trailing slash.
    func splitPath(s string, lastIndex bool) (string, string) {
    	var i int
    	if lastIndex {
    		i = strings.LastIndex(s, "/")
    	} else {
    		i = strings.Index(s, "/")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top