Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,343 for ireduce (0.12 sec)

  1. docs/compression/README.md

    and scales with the number of available CPU cores.
    Decompression speed is typically at least 1GB/s.
    
    This means that in cases where raw IO is below these numbers
    compression will not only reduce disk usage but also help increase system throughput.
    Typically, enabling compression on spinning disk systems
    will increase speed when the content can be compressed.
    
    ## Get Started
    
    ### 1. Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: %[[INDEX:.*]] = "mhlo.dynamic_iota"(%[[SHAPE]]) <{iota_dimension = 1 : i64}> : (tensor<2xindex>) -> tensor<3x7xi64>
      // CHECK: %[[REDUCE:.*]]:2 = mhlo.reduce(%arg0 init: %[[INIT]]), (%[[INDEX]] init: %[[INDEX_INIT]])
      // CHECK: return %[[REDUCE]]#1 : tensor<3xi64>
      %axis = "tf.Const"() { value = dense<1> : tensor<i32> } : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

         */
        static String createMavenVersionString(Properties buildProperties) {
            String timestamp = reduce(buildProperties.getProperty("timestamp"));
            String version = reduce(buildProperties.getProperty(BUILD_VERSION_PROPERTY));
            String rev = reduce(buildProperties.getProperty("buildNumber"));
            String distributionName = reduce(buildProperties.getProperty("distributionName"));
    
            String msg = distributionName + " ";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

        auto output_type = mlir::cast<ShapedType>(op.getOutput().getType());
    
        if (!input_type.hasRank() || !output_type.hasRank()) return failure();
    
        // The pattern attempts to reduce the rank of the input to BroadcastTo.
        // Thus, we fail to match if the consuming reshape rank is larger.
        ArrayRef<int64_t> input_shape = input_type.getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    		// executing this request.
    		//
    		// To mitigate the impact of it, we're capping the maximum number of
    		// seats that can be assigned to a given request. Thanks to it:
    		// 1) we reduce the amount of seat-seconds that are "wasted" during
    		//    dispatching and executing initial phase of the request
    		// 2) we are not changing the finalWork estimate - just potentially
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue44799.go

    package main
    
    func Map[F, T any](s []F, f func(F) T) []T { return nil }
    
    func Reduce[Elem1, Elem2 any](s []Elem1, initializer Elem2, f func(Elem2, Elem1) Elem2) Elem2 { var x Elem2; return x }
    
    func main() {
    	var s []int
    	var f1 func(int) float64
    	var f2 func(float64, int) float64
    	_ = Map[int](s, f1)
    	_ = Map(s, f1)
    	_ = Reduce[int](s, 0, f2)
    	_ = Reduce(s, 0, f2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 530 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This is a pass to reduce operands without changing the outcome.
    
    #include <vector>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/BitVector.h"
    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/STLExtras.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/BUILD

            "@llvm-project//mlir:Support",
            "@llvm-project//mlir:TransformUtils",
            "@local_xla//xla/mlir_hlo",
        ],
    )
    
    cc_library(
        name = "reduce",
        srcs = [
            "reduce.cc",
        ],
        hdrs = [
            "reduce.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite/stablehlo:hlo_matchers",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:ArithDialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/internal/goexperiment/flags.go

    	// compiled Go functions.
    	//
    	// Requires wrappers (to do ABI translation), and reflect (so
    	// reflection calls use registers).
    	RegabiArgs bool
    
    	// HeapMinimum512KiB reduces the minimum heap size to 512 KiB.
    	//
    	// This was originally reduced as part of PacerRedesign, but
    	// has been broken out to its own experiment that is disabled
    	// by default.
    	HeapMinimum512KiB bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe.go

    	*v = *feZero
    	return v
    }
    
    var feOne = &Element{1, 0, 0, 0, 0}
    
    // One sets v = 1, and returns v.
    func (v *Element) One() *Element {
    	*v = *feOne
    	return v
    }
    
    // reduce reduces v modulo 2^255 - 19 and returns it.
    func (v *Element) reduce() *Element {
    	v.carryPropagate()
    
    	// After the light reduction we now have a field element representation
    	// v < 2^255 + 2^13 * 19, but need v < 2^255 - 19.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top