Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 479 for tcCall (0.14 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // Matches the following pattern that represents uniform quantization:
    //
    // `call @uniform_quantize(%input, %inverse_scale, %zero_point)`
    //
    // Provides helper functions to access the operands and the callee.
    class UniformQuantizeFunctionCallPattern {
     public:
      // Returns Failure if it doesn't match. Returns the "wrapper" for the uniform
      // dequantization function call pattern when matched.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByReference/foreignValue.kt

    // MODULE: context
    
    // FILE: context.kt
    fun test() {
        <caret_context>call("foo")
    }
    
    fun call(text: String) {}
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    // CODE_FRAGMENT_FOREIGN_VALUE: foo_DebugLabel(Ljava/lang/String;)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:20:29 UTC 2024
    - 331 bytes
    - Viewed (0)
  3. src/syscall/mksyscall.pl

    		}
    	}
    	if ($ret[0] eq "_" && $ret[1] eq "_" && $ret[2] eq "_") {
    		$text .= "\t$call\n";
    	} else {
    		if ($errvar eq "" && $ENV{'GOOS'} eq "linux") {
    			# raw syscall without error on Linux, see golang.org/issue/22924
    			$text .= "\t$ret[0], $ret[1] := $call\n";
    		} else {
    			$text .= "\t$ret[0], $ret[1], $ret[2] := $call\n";
    		}
    	}
    	$text .= $body;
    
    	if ($plan9 && $ret[2] eq "e1") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/syscall/dll_windows.go

    func (p *LazyProc) Addr() uintptr {
    	p.mustFind()
    	return p.proc.Addr()
    }
    
    // Call executes procedure p with arguments a. See the documentation of
    // Proc.Call for more information.
    //
    //go:uintptrescapes
    func (p *LazyProc) Call(a ...uintptr) (r1, r2 uintptr, lastErr error) {
    	p.mustFind()
    	return p.proc.Call(a...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            def resultHandler = new TestResultHandler()
    
            when:
            def connector = toolingApi.connector()
            ProjectConnection connection = connector.connect() // using withConnection would call close after the closure
    
            def build = connection.newBuild()
            build.forTasks('hang')
            build.run(resultHandler)
            sync.waitForAllPendingCalls(resultHandler)
            connector.disconnect()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. tests/integration/tests.mk

    # Generate integration test targets for kubernetes environment.
    test.integration.%.kube: | $(JUNIT_REPORT) check-go-tag
    	$(call run-test,./tests/integration/$(subst .,/,$*)/...)
    
    # Generate integration fuzz test targets for kubernetes environment.
    test.integration-fuzz.%.kube: | $(JUNIT_REPORT) check-go-tag
    	$(call run-test,./tests/integration/$(subst .,/,$*)/...,-tags="integfuzz integ")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/reflect/abi.go

    	})
    	a.stackBytes += size
    }
    
    // abiDesc describes the ABI for a function or method.
    type abiDesc struct {
    	// call and ret represent the translation steps for
    	// the call and return paths of a Go function.
    	call, ret abiSeq
    
    	// These fields describe the stack space allocated
    	// for the call. stackCallArgsSize is the amount of space
    	// reserved for arguments but not return values. retOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    // so that we can set up g0.sched to return to the call of mstart1 above.
    //
    //go:noinline
    func mstart1() {
    	gp := getg()
    
    	if gp != gp.m.g0 {
    		throw("bad runtime·mstart")
    	}
    
    	// Set up m.g0.sched as a label returning to just
    	// after the mstart1 call in mstart0 above, for use by goexit0 and mcall.
    	// We're never coming back to mstart1 after we call schedule,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/runtime/symtabinl.go

    	// always a "call PC" (not a "return PC"). This is 0 when the iterator is
    	// exhausted.
    	pc uintptr
    
    	// index is the index of the current record in inlTree, or -1 if we are in
    	// the outermost function.
    	index int32
    }
    
    // newInlineUnwinder creates an inlineUnwinder initially set to the inner-most
    // inlined frame at PC. PC should be a "call PC" (not a "return PC").
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

        "mlir::stablehlo::StablehloDialect",
        "mlir::quantfork::QuantizationForkDialect",
      ];
    }
    
    def XlaCallModuleToCallPass : Pass<"stablehlo-xla-call-module-to-call", "ModuleOp"> {
      let summary = "Convert XlaCallModuleOp to func.call op";
      let dependentDialects = [
        "TF::TensorFlowDialect",
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top