Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 487 for runActions (0.26 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

    }
    
    def LiftQuantizableSpotsAsFunctionsPass : Pass<"stablehlo-lift-quantizable-spots-as-functions", "mlir::ModuleOp"> {
      let summary = "Replace quantization candidates with composite functions into the module.";
      let description = [{
        Mark frequent fusible patterns as functions for quantization targets.
        In addition to brining performance benefits by reducing q/dq op overhead in non-full quantization,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

      // Iterate over the sorted list of functions to keep order deterministic.
      for (func::FuncOp func : GetSortedFunctions(module_op)) {
        if (failed(applyPatternsAndFoldGreedily(func, frozen_patterns))) {
          func.emitError()
              << "quant-stablehlo-lift-quantizable-spots-as-functions failed.";
          signalPassFailure();
        }
      }
    
      // Remove all attr_map attributes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonIdleTimeoutExpirationStrategy.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server;
    
    import com.google.common.base.Function;
    import com.google.common.base.Functions;
    import com.google.common.base.Preconditions;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationResult;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStrategy;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/nowb.go

    	var q ir.NameQueue
    
    	for _, fn := range typecheck.Target.Funcs {
    		symToFunc[fn.LSym] = fn
    
    		// Make nowritebarrierrec functions BFS roots.
    		if fn.Pragma&ir.Nowritebarrierrec != 0 {
    			funcs[fn] = nowritebarrierrecCall{}
    			q.PushRight(fn.Nname)
    		}
    		// Check go:nowritebarrier functions.
    		if fn.Pragma&ir.Nowritebarrier != 0 && fn.WBPos.IsKnown() {
    			base.ErrorfAt(fn.WBPos, 0, "write barrier prohibited")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sha3
    
    // This file provides functions for creating instances of the SHA-3
    // and SHAKE hash functions, as well as utility functions for hashing
    // bytes.
    
    import (
    	"hash"
    )
    
    // New224 creates a new SHA3-224 hash.
    // Its generic security strength is 224 bits against preimage attacks,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/sync/atomic/doc.go

    // functions, is the atomic equivalent of:
    //
    //	if *addr == old {
    //		*addr = new
    //		return true
    //	}
    //	return false
    //
    // The add operation, implemented by the AddT functions, is the atomic
    // equivalent of:
    //
    //	*addr += delta
    //	return *addr
    //
    // The load and store operations, implemented by the LoadT and StoreT
    // functions, are the atomic equivalents of "return *addr" and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. docs/en/docs/async.md

    ### Other utility functions
    
    Any other utility function that you call directly can be created with normal `def` or `async def` and FastAPI won't affect the way you call it.
    
    This is in contrast to the functions that FastAPI calls for you: *path operation functions* and dependencies.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/GradleCustomizationSchemaBuildingComponent.kt

     *
     * The features are:
     * * importing properties using the [org.gradle.api.provider.Property] API,
     * * importing types from functions that return or configure custom types.
     *
     * If object conversion is supported by the schema, also brings the basic DCL conversion capabilities
     * for resolving properties and member functions, see [conversionSupport]
     */
    internal
    fun EvaluationSchemaBuilder.gradleDslGeneralSchema() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/3-iter.md

    ### Iterators
    
    The new [iter] package provides the basic definitions for working with
    user-defined iterators.
    
    The [slices] package adds several functions that work with iterators:
    - [All](/pkg/slices#All) returns an iterator over slice indexes and values.
    - [Values](/pkg/slices#Values) returns an iterator over slice elements.
    - [Backward](/pkg/slices#Backward) returns an iterator that loops over
      a slice backward.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/GeneralGradleDslSchemaTest.kt

        @Test
        fun `general dsl schema has types discovered via action functions`() {
            val schema = schemaFrom(TopLevelReceiver::class)
            assertTrue(schema.analysisSchema.dataClassesByFqName.keys.any { it.simpleName == NestedReceiver::class.simpleName })
        }
    
        @Test
        fun `general dsl schema has types discovered via factory functions`() {
            val schema = schemaFrom(UtilsContainer::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top