Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,605 for paused (0.13 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tensorflow/passes.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Legalize the tf ops to the quant ops, so the quantization passes can work.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLegalizeTFToQuantPass();
    
    // Fallbacks ops that are not supported by TF Quantization to TFLite Flex ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 08 00:46:29 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/ir/Passes.td

    Alexander Belyaev <******@****.***> 1659120781 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

        val wrappedCode: String,
        val originalCodeOffset: Int,
        val suffixLength: Int,
    )
    
    
    fun parse(@Language("kts") code: String): ParsedLightTree {
        val (wrappedCode, codeOffset, suffixLength) = wrapScriptIntoClassInitializerBlock(code)
        return ParsedLightTree(
            KotlinLightParser.parse(psiBuilderFactory.createBuilder(parserDefinition, lexer, wrappedCode)),
            wrappedCode,
            codeOffset,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/internal/trace/parser.go

    	ProfileP // depicts recording of CPU profile samples
    )
    
    // Event types in the trace.
    // Verbatim copy from src/runtime/trace.go with the "trace" prefix removed.
    const (
    	EvNone              = 0  // unused
    	EvBatch             = 1  // start of per-P batch of events [pid, timestamp]
    	EvFrequency         = 2  // contains tracer timer frequency [frequency (ticks per second)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateOutlineCompositesPass();
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateSHLOSimplifyPass();
    
    #define GEN_PASS_REGISTRATION
    #include "tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.h.inc"
    
    }  // namespace mlir::odml
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h

                                             MLIRContext* context);
    
    #define GEN_PASS_DECL
    #define GEN_PASS_REGISTRATION
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h

    // Adds generated pass default constructors or options definitions.
    #define GEN_PASS_DECL
    // Adds generated pass registration functions.
    #define GEN_PASS_REGISTRATION
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    }  // namespace mlir::quant::stablehlo
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/passes/passes.h

    Russell Power <******@****.***> 1686186907 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/runtime/lock_js.go

    func handleAsyncEvent() {
    	idleStart = nanotime()
    	pause(getcallersp() - 16)
    }
    
    // clearIdleTimeout clears our record of the timeout started by beforeIdle.
    func clearIdleTimeout() {
    	idleTimeout.clear()
    	idleTimeout = nil
    }
    
    // pause sets SP to newsp and pauses the execution of Go's WebAssembly code until an event is triggered.
    func pause(newsp uintptr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_json_interleaved.txt

    # line for a new parallel subtest.
    
    [short] skip
    
    go test -json
    stdout '"Test":"TestWeirdTiming","Output":"[^"]* logging to outer again\\n"'
    
    -- go.mod --
    module example.com
    go 1.15
    -- main_test.go --
    package main
    
    import (
    	"testing"
    )
    
    func TestWeirdTiming(outer *testing.T) {
    	outer.Run("pauser", func(pauser *testing.T) {
    		outer.Logf("logging to outer")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 17:44:20 UTC 2020
    - 581 bytes
    - Viewed (0)
Back to top