Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for tfsplits (0.14 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      return success();
    }
    
    LogicalResult ConvertTFSplitOp::matchAndRewrite(
        Operation* op, PatternRewriter& rewriter) const {
      auto tf_split_op = cast<TF::SplitOp>(op);
    
      // Number of splits cannot be negative.
      auto num_split = rewriter.getI32IntegerAttr(tf_split_op.getNumSplit());
    
      rewriter.replaceOpWithNewOp<TFL::SplitOp>(
          op, tf_split_op.getOutput().getTypes(), tf_split_op.getSplitDim(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/runtime/mspanset.go

    func (h headTailIndex) head() uint32 {
    	return uint32(h >> 32)
    }
    
    // tail returns the tail of a headTailIndex value.
    func (h headTailIndex) tail() uint32 {
    	return uint32(h)
    }
    
    // split splits the headTailIndex value into its parts.
    func (h headTailIndex) split() (head uint32, tail uint32) {
    	return h.head(), h.tail()
    }
    
    // atomicHeadTailIndex is an atomically-accessed headTailIndex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/embed/embed.go

    	// This order brings directory contents together in contiguous sections
    	// of the list, allowing a directory read to use binary search to find
    	// the relevant sequence of entries.
    	files *[]file
    }
    
    // split splits the name into dir and elem as described in the
    // comment in the FS struct above. isDir reports whether the
    // final trailing slash was present, indicating that name is a directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. pkg/kubelet/logs/container_log_manager.go

    	for _, l := range unused {
    		if err := c.osInterface.Remove(l); err != nil {
    			return nil, fmt.Errorf("failed to remove unused log %q: %v", l, err)
    		}
    	}
    	return inuse, nil
    }
    
    // filterUnusedLogs splits logs into 2 groups, the 1st group is in used logs,
    // the second group is unused logs.
    func filterUnusedLogs(logs []string) (inuse []string, unused []string) {
    	for _, l := range logs {
    		if isInUse(l, logs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/runtime/select.go

    	}
    	nextp = &gp.waiting
    	for _, casei := range lockorder {
    		casi = int(casei)
    		cas = &scases[casi]
    		c = cas.c
    		sg := acquireSudog()
    		sg.g = gp
    		sg.isSelect = true
    		// No stack splits between assigning elem and enqueuing
    		// sg on gp.waiting where copystack can find it.
    		sg.elem = cas.elem
    		sg.releasetime = 0
    		if t0 != 0 {
    			sg.releasetime = -1
    		}
    		sg.c = c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. cmd/iam-object-store.go

    	policyDBPrefix          = "policydb/"
    	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 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/runtime/mranges.go

    		return addrRange{newEnd, r.limit}
    	}
    	a.ranges = a.ranges[:len(a.ranges)-1]
    	a.totalBytes -= size
    	return r
    }
    
    // removeGreaterEqual removes the ranges of a which are above addr, and additionally
    // splits any range containing addr.
    func (a *addrRanges) removeGreaterEqual(addr uintptr) {
    	pivot := a.findSucc(addr)
    	if pivot == 0 {
    		// addr is before all ranges in a.
    		a.totalBytes = 0
    		a.ranges = a.ranges[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin.go

    		libcCall(unsafe.Pointer(abi.FuncPCABI0(osinit_hack_trampoline)), nil)
    	}
    	return
    }
    func osinit_hack_trampoline()
    
    // mmap is used to do low-level memory allocation via mmap. Don't allow stack
    // splits, since this function (used by sysAlloc) is called in a lot of low-level
    // parts of the runtime and callers often assume it won't acquire any locks.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/func.go

    			'A' <= r && r <= 'Z' ||
    			'a' <= r && r <= 'z'
    	}
    	return false
    }
    
    func escapedImportPathOK(r rune) bool {
    	return modPathOK(r) || r == '+' || r == '/' || r == '%'
    }
    
    // splitPkg splits the full linker symbol name into package and local symbol
    // name.
    func splitPkg(name string) (pkgpath, sym string) {
    	// package-sym split is at first dot after last the / that comes before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VESRLG $26, h0, T_1  \
    	VN     MOD26, h2, h2 \
    	VN     MOD26, h0, h0 \
    	VAG    T_0, h3, h3   \
    	VAG    T_1, h1, h1   \
    	VESRLG $26, h3, T_2  \
    	VN     MOD26, h3, h3 \
    	VAG    T_2, h4, h4
    
    // EXPAND splits the 128-bit little-endian values in0 and in1
    // into 26-bit big-endian limbs and places the results into
    // the first and second lane of dā‚‚ā‚†[0:4] respectively.
    //
    // The EX0, EX1 and EX2 constants are arrays of byte indices
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top