Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 223 for runActions (0.14 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

            val daemonHeapMb = memoryHogMb * 5 + 400
            for (run in 1..runs) {
                println("Run number $run")
                myTask.writeText(myTask.readText().replace("runAction${run - 1}", "runAction$run"))
                buildWithDaemonHeapSize(daemonHeapMb, "myTask").apply {
                    compilationCache {
                        assertCacheHits(run)
                    }
                    classLoadingCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateInsertCustomAggregationOpsPass(
        const ::stablehlo::quantization::CalibrationOptions& calib_opts);
    
    // Replaces composite functions with quantized composite functions. After this
    // pass runs, functions in the given graph will be replaced with their quantized
    // versions. By doing so, the quantization will be applied to the given input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

          GetInitFuncOps(module_op);
      if (failed(init_func_ops)) {
        module_op->emitError("Validation on initializer functions failed.");
        return signalPassFailure();
      } else if (init_func_ops->empty()) {
        VLOG(1) << "No initializer functions found.";
        return;
      }
    
      // Find the initializer functions and clone their ops to @main.
      for (const StringRef init_type : kInitializerTypesByMergeOrder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      return std::move(*loader).module();
    }
    
    // Renames functions in the stablehlo module to avoid naming conflicts with
    // existing functions in the tf module.
    // Sets _from_xla_call_module attribute for each stablehlo function.
    // Returns the new stablehlo main function's name or error.
    //
    // If we directly insert stablehlo functions into tf module, MLIR will rename
    // the stablehlo functions themselves in the tf module automatically to avoid
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. 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)
  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. src/cmd/compile/internal/ir/func.go

    	flags bitset16
    
    	// ABI is a function's "definition" ABI. This is the ABI that
    	// this function's generated code is expecting to be called by.
    	//
    	// For most functions, this will be obj.ABIInternal. It may be
    	// a different ABI for functions defined in assembly or ABI wrappers.
    	//
    	// This is included in the export data and tracked across packages.
    	ABI obj.ABI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateResourceDeviceInferencePass();
    
    // Creates a pass that promotes resource reads/writes in `functions` to inputs
    // and outputs of `functions`, assuming that resource operations have already
    // been decomposed and function calls have already been inlined. If `functions`
    // is empty, the pass is applied to the main function by default. The pass also
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

        // the textual format (on the commandline for example).
        return "quant-lift-quantizable-spots-as-functions";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Replace quantization candidates with composite functions into the "
               "module";
      }
    
      void getDependentDialects(DialectRegistry& registry) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top