Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for tfsplits (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Computes and applies all necessary control dependencies based on side effect analysis.";
      let description = [{
        This pass is intended to run after the split_into_island_per_op
        pass. That pass splits up multi-op islands into multiple individual islands
        wrapping a single op without applying any control deps between the new
        islands. So, this pass is needed in order to make preservation of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        rewriter.replaceOpWithNewOp<TFL::QConstOp>(
            op, /*qtype=*/TypeAttr::get(op.getOutput().getType()),
            /*value=*/op.getValue());
      }
    };
    
    // Splits hybrid quantized `stablehlo.dot_general` into `tfl.dequantize` and
    // float `stablehlo.dot_general` op. Legalization of float
    // `stablehlo.dot_general` op relies on existing passes for conversion of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// clang says "unknown argument".
    	// tcc says "unsupported"
    	// AIX says "not recognized"
    	// Older versions of GCC say "unrecognised debug output level".
    	// For -fsplit-stack GCC says "'-fsplit-stack' is not supported".
    	supported := !bytes.Contains(out, []byte("unrecognized")) &&
    		!bytes.Contains(out, []byte("unknown")) &&
    		!bytes.Contains(out, []byte("unrecognised")) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    		return
    	}
    
    	// if already replicated, return true if a new reset was requested.
    	splits := strings.SplitN(rs, ";", 2)
    	if len(splits) != 2 {
    		return
    	}
    	newReset := splits[1] != resetID
    	if !newReset && tgtStatus == replication.Completed {
    		// already replicated and no reset requested
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            setAuthor(author);
            return this;
        }
    
        public StandardJavadocDocletOptions author() {
            return author(true);
        }
    
        /**
         * -splitindex
         * <p>
         * Splits the index file into multiple files, alphabetically, one file per letter,
         * plus a file for any index entries that start with non-alphabetical characters.
         */
        @Input
        public boolean isSplitIndex() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. pkg/volume/util/util.go

    	for _, status := range statuses {
    		if status.State.Terminated == nil && status.State.Waiting == nil {
    			return false
    		}
    	}
    	return true
    }
    
    // SplitUniqueName splits the unique name to plugin name and volume name strings. It expects the uniqueName to follow
    // the format plugin_name/volume_name and the plugin name must be namespaced as described by the plugin interface,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. src/crypto/internal/mlkem768/mlkem768.go

    	// little-endian, and rejects values higher than q, until it drew 256
    	// values. (The rejection rate is approximately 19%.)
    	//
    	// To do this from a bytes stream, it draws three bytes at a time, and
    	// splits them into two uint16 appropriately masked.
    	//
    	//               r₀              r₁              r₂
    	//       |- - - - - - - -|- - - - - - - -|- - - - - - - -|
    	//
    	//               Uint16(r₀ || r₁)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    			},
    			Count: 1,
    			Check: check.Status(http.StatusTeapot),
    		},
    		workloadAgnostic: true,
    	})
    
    	splits := [][]int{
    		{50, 25, 25},
    		{80, 10, 10},
    	}
    	if skipVM {
    		splits = [][]int{
    			{50, 50},
    			{80, 20},
    		}
    	}
    	for _, split := range splits {
    		split := split
    		t.RunTraffic(TrafficTestCase{
    			name:           fmt.Sprintf("shifting-%d", split[0]),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	// JoinPath joins the sequence of path fragments into a single path.
    	// If JoinPath is nil, Import uses filepath.Join.
    	JoinPath func(elem ...string) string
    
    	// SplitPathList splits the path list into a slice of individual paths.
    	// If SplitPathList is nil, Import uses filepath.SplitList.
    	SplitPathList func(list string) []string
    
    	// IsAbsPath reports whether path is an absolute path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			listfn.Lines = append(listfn.Lines, makeWebListLine(l, flatSum, cumSum, lineContents, asm, sp.reader, rpt))
    		}
    
    		result.Funcs = append(result.Funcs, listfn)
    	}
    	return result
    }
    
    // functions splits apart the lines to show in a file into a list of per-function ranges.
    func (sp *sourcePrinter) functions(f *sourceFile) []sourceFunction {
    	var funcs []sourceFunction
    
    	// Get interesting lines in sorted order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top