Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 973 for ireduce (0.1 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h

    LogicalResult MatchReduceToArgMinMaxType2(mhlo::ReduceOp reduce_op,
                                              bool is_argmax);
    
    // Base class for converting mhlo::ReduceOp to TF/TFL ArgMax/ArgMin ops.
    template <typename Reduce, typename ArgReduce, typename BooleanReduce,
              bool is_argmax>
    class ConvertReduceOpToArgMinMax : public OpConversionPattern<mhlo::ReduceOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h"
    
    #include <optional>
    
    #include "llvm/Support/Casting.h"
    #include "mlir/IR/Block.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/BUILD

            "tf-reduce-identity.mlir": ["no_windows"],
        },
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            ":reducer_tester",
            "//tensorflow/compiler/mlir:tf-opt",
            "//tensorflow/compiler/mlir:tf-reduce",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. 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)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	// carry and partially reduce the partial products
    	REDUCE(H_0, H_1, H_2, H_3, H_4)
    
    	CMPBNE R3, $0, loop
    
    finish:
    	// sum lane 0 and lane 1 and put the result in lane 1
    	VZERO  T_0
    	VSUMQG H_0, T_0, H_0
    	VSUMQG H_3, T_0, H_3
    	VSUMQG H_1, T_0, H_1
    	VSUMQG H_4, T_0, H_4
    	VSUMQG H_2, T_0, H_2
    
    	// reduce again after summation
    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