Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 302 for beginning (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      void runOnOperation() final;
    };
    
    #define GEN_PASS_DEF_MOVETRANSPOSESPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // MoveTransposesPass moves all Transpose ops to the beginning or to the end of
    // the basic block where they are defined. This will allow canonicalzer to
    // delete redundant transposes.
    class MoveTransposesPass
        : public impl::MoveTransposesPassBase<MoveTransposesPass> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

      for (Operation& op : graph.GetBody()) {
        auto island = dyn_cast<IslandOp>(&op);
        if (!island) continue;
    
        // We call `VerifyExportSuitable` in the beginning of the pass, so every
        // island wraps a single op.
        Operation& wrapped_op = island.GetBody().front();
        TF::ParallelExecutionIdPairs id_pairs;
        if (failed(TF::ParseParallelExecutionIds(&wrapped_op, id_pairs))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/component/local/model/TransformedComponentFileArtifactIdentifier.java

     * as artifact transformations may result in multiple artifacts with the same file name.
     *
     * <p>The original file name should refer to the name of the artifact at the beginning of the transform chain.</p>
     */
    public class TransformedComponentFileArtifactIdentifier implements ComponentArtifactIdentifier, DisplayName {
        private final ComponentIdentifier componentId;
        private final String fileName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 18:43:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. common/config/.golangci-format.yml

          - default # Contains all imports that could not be matched to another section type.
          - prefix(istio.io/) # Groups all imports with the specified Prefix.
      goimports:
        # put imports beginning with prefix after 3rd-party packages;
        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
    issues:
      # Which dirs to exclude: issues from them won't be reported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/net/sendfile_unix_alt.go

    	// Darwin, FreeBSD, DragonFly and Solaris use 0 as the "until EOF" value.
    	// If you pass in more bytes than the file contains, it will
    	// loop back to the beginning ad nauseam until it's sent
    	// exactly the number of bytes told to. As such, we need to
    	// know exactly how many bytes to send.
    	var remain int64 = 0
    
    	lr, ok := r.(*io.LimitedReader)
    	if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/os/path.go

    	// Extract the parent folder from path by first removing any trailing
    	// path separator and then scanning backward until finding a path
    	// separator or reaching the beginning of the string.
    	i := len(path) - 1
    	for i >= 0 && IsPathSeparator(path[i]) {
    		i--
    	}
    	for i >= 0 && !IsPathSeparator(path[i]) {
    		i--
    	}
    	if i < 0 {
    		i = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/runtime/cgo/libcgo.h

    #include <stdlib.h>
    #include <stdio.h>
    
    #undef nil
    #define nil ((void*)0)
    #define nelem(x) (sizeof(x)/sizeof((x)[0]))
    
    typedef uint32_t uint32;
    typedef uint64_t uint64;
    typedef uintptr_t uintptr;
    
    /*
     * The beginning of the per-goroutine structure,
     * as defined in ../pkg/runtime/runtime.h.
     * Just enough to edit these two fields.
     */
    typedef struct G G;
    struct G
    {
    	uintptr stacklo;
    	uintptr stackhi;
    };
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/internal/filepathlite/path_windows.go

    	// insert a .\ at the beginning to avoid converting relative paths
    	// like a/../c: into c:.
    	for _, c := range out.buf {
    		if IsPathSeparator(c) {
    			break
    		}
    		if c == ':' {
    			out.prepend('.', Separator)
    			return
    		}
    	}
    	// If a path begins with \??\, insert a \. at the beginning
    	// to avoid converting paths like \a\..\??\c:\x into \??\c:\x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. pkg/apis/scheduling/types.go

    	HighestUserDefinablePriority = int32(1000000000)
    	// SystemCriticalPriority is the beginning of the range of priority values for critical system components.
    	SystemCriticalPriority = 2 * HighestUserDefinablePriority
    	// SystemPriorityClassPrefix is the prefix reserved for system priority class names. Other priority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/looprotate.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    // loopRotate converts loops with a check-loop-condition-at-beginning
    // to loops with a check-loop-condition-at-end.
    // This helps loops avoid extra unnecessary jumps.
    //
    //	 loop:
    //	   CMPQ ...
    //	   JGE exit
    //	   ...
    //	   JMP loop
    //	 exit:
    //
    //	  JMP entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top