Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,343 for ireduce (0.27 sec)

  1. tensorflow/compiler/mlir/tf_mlir_reduce_main.cc

    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Reducer/ReductionPatternInterface.h"  // from @llvm-project
    #include "mlir/Tools/mlir-reduce/MlirReduceMain.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/init_mlir.h"
    #include "tensorflow/compiler/mlir/register_common_dialects.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 20:13:57 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/2-unique.md

    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/utils.h

    #include "mlir/IR/Types.h"  // from @llvm-project
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace mhlo {
    
    // Builds body for reduce op by using the template binary op as the
    // reducer op.
    template <typename Op>
    void BuildReduceBody(Type element_type, Region* body, OpBuilder* builder) {
      OpBuilder::InsertionGuard guard(*builder);
      Block* block = builder->createBlock(body);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        llvm::cl::desc("Wether serialize stablehlo ops or not"),
        llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    opt<bool> reduce_type_precision(
        "reduce-type-precision",
        llvm::cl::desc("Convert tensors to a lower precision if all values are "
                       "within the reduced precision range. This could have side "
                       "effects triggered by downstream packing algorithms."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/kotlin/build.gradle.kts

        type = "rpm"
        builtBy("rpm")
    }
    // end::custom-artifact[]
    
    tasks.register("rpm") {
        // Reduce scope of property for compatibility with the configuration cache
        val rpmFile = rpmFile
        outputs.file(rpmFile)
        doLast {
            // produce real RPM here
            rpmFile.get().asFile.writeText("file contents")
        }
    }
    
    // tag::custom-artifact-publication[]
    publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/math/gamma.go

    		}
    		sq1, sq2 := stirling(q)
    		absz := Abs(z)
    		d := absz * sq1 * sq2
    		if IsInf(d, 0) {
    			z = Pi / absz / sq1 / sq2
    		} else {
    			z = Pi / d
    		}
    		return float64(signgam) * z
    	}
    
    	// Reduce argument
    	z := 1.0
    	for x >= 3 {
    		x = x - 1
    		z = z * x
    	}
    	for x < 0 {
    		if x > -1e-09 {
    			goto small
    		}
    		z = z / x
    		x = x + 1
    	}
    	for x < 2 {
    		if x < 1e-09 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. src/runtime/mgcwork.go

    	// workbufAlloc is the number of bytes to allocate at a time
    	// for new workbufs. This must be a multiple of pageSize and
    	// should be a multiple of _WorkbufSize.
    	//
    	// Larger values reduce workbuf allocation overhead. Smaller
    	// values reduce heap fragmentation.
    	workbufAlloc = 32 << 10
    )
    
    func init() {
    	if workbufAlloc%pageSize != 0 || workbufAlloc%_WorkbufSize != 0 {
    		throw("bad workbufAlloc")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. test/typeparam/sliceimp.dir/a.go

    func Map[Elem1, Elem2 any](s []Elem1, f func(Elem1) Elem2) []Elem2 {
    	r := make([]Elem2, len(s))
    	for i, v := range s {
    		r[i] = f(v)
    	}
    	return r
    }
    
    // Reduce reduces a []Elem1 to a single value of type Elem2 using
    // a reduction function.
    func Reduce[Elem1, Elem2 any](s []Elem1, initializer Elem2, f func(Elem2, Elem1) Elem2) Elem2 {
    	r := initializer
    	for _, v := range s {
    		r = f(r, v)
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 30 01:55:58 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  9. gradle.properties

    # Reduce Xmx after https://github.com/gradle/gradle-private/issues/4168 is resolved
    org.gradle.jvmargs=-Xmx2700m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    org.gradle.caching=true
    org.gradle.configuration-cache=true
    systemProp.gradle.publish.skip.namespace.check=true
    # Kotlin DSL settings
    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    	n := uint(len(rr.limbs))
    	mLen := uint(m.BitLen())
    	logR := _W * n
    
    	// We start by computing R = 2^(_W * n) mod m. We can get pretty close, to
    	// 2^⌊log₂m⌋, by setting the highest bit we can without having to reduce.
    	rr.limbs[n-1] = 1 << ((mLen - 1) % _W)
    	// Then we double until we reach 2^(_W * n).
    	for i := mLen - 1; i < logR; i++ {
    		rr.Add(rr, m)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top