Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,299 for callGo (0.11 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/stablehlo-custom-call-legalize-composite.mlir

    // RUN: odml-to-stablehlo-opt %s -stablehlo-custom-call-legalize-composite | FileCheck %s
    
    // CHECK-LABEL: module
    module {
      // CHECK-LABEL: @main
      func.func @main(%arg0: tensor<1xf32>, %arg1: tensor<2xf32>) {
        // CHECK: stablehlo.custom_call @foo
        stablehlo.custom_call @foo() : () -> ()
        // CHECK-NOT: stablehlo.custom_call
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 19:49:44 UTC 2024
    - 1009 bytes
    - Viewed (0)
  2. src/runtime/asm_mipsx.s

    	RET
    
    CALLFNcall16, 16)
    CALLFNcall32, 32)
    CALLFNcall64, 64)
    CALLFN(·call128, 128)
    CALLFN(·call256, 256)
    CALLFN(·call512, 512)
    CALLFN(·call1024, 1024)
    CALLFN(·call2048, 2048)
    CALLFN(·call4096, 4096)
    CALLFN(·call8192, 8192)
    CALLFN(·call16384, 16384)
    CALLFN(·call32768, 32768)
    CALLFN(·call65536, 65536)
    CALLFN(·call131072, 131072)
    CALLFN(·call262144, 262144)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/runtime/mfinal_test.go

    		old := *v
    		runtime.SetFinalizer(v, func(v any) {
    			i, ok := v.(*bigValue)
    			if !ok {
    				t.Errorf("finalizer called with type %T, want *bigValue", v)
    			}
    			if *i != old {
    				t.Errorf("finalizer called with %+v, want %+v", *i, old)
    			}
    			close(ch)
    		})
    		v = nil
    		done <- true
    	}()
    	<-done
    	runtime.GC()
    	<-ch
    }
    
    func fin(v *int) {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-communication.mlir

      // CHECK:      [[CALL:%.*]]:2 = call @callee([[MAIN_ARG0]], [[MAIN_TOKEN]])
      // CHECK-SAME: (tensor<i32>, !mhlo.token) -> (tensor<i32>, !mhlo.token)
      %0 = func.call @callee(%arg0) : (tensor<i32>) -> tensor<i32>
    
      // CHECK:      return [[CALL]]#0
      func.return %0 : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 18:24:20 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    	New: func() interface{} { return new(bytes.Buffer) },
    }
    
    // HuffmanDecode decodes the string in v and writes the expanded
    // result to w, returning the number of bytes written to w and the
    // Write call's return value. At most one Write call is made.
    func HuffmanDecode(w io.Writer, v []byte) (int, error) {
    	buf := bufPool.Get().(*bytes.Buffer)
    	buf.Reset()
    	defer bufPool.Put(buf)
    	if err := huffmanDecode(buf, 0, v); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

                    SymbolTable &to) {
      if (to.lookup<func::FuncOp>(symbol_ref.getValue())) return;
      func::FuncOp callee = from.lookup<func::FuncOp>(symbol_ref.getValue());
      callee.getOperation()->getBlock()->getOperations().remove(
          callee.getOperation());
      to.insert(callee);
    }
    
    void TPUBridgeExecutorIslandOutlining::runOnOperation() {
      MLIRContext *ctx = &getContext();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    // `ExtractSubgraphToFunc` adds exactly two "new" `Operations`, a FuncOp and
    // a CallOp. Pass these back to the caller for setting more specific attributes
    // after graph mutation has taken place.
    struct OpsAdded {
      mlir::func::FuncOp func_op;
      mlir::func::CallOp call_op;
    };
    
    // Given a `Subgraph` containing a sequence of adjacent `Operations` from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    					return false
    				}
    			}
    
    			call, ok := n.(*ast.CallExpr)
    			if !ok || len(call.Args) == 0 || !match(pass.TypesInfo, call.Args[len(call.Args)-1], w.args) {
    				return true
    			}
    
    			fn, kind := printfNameAndKind(pass, call)
    			if kind != 0 {
    				checkPrintfFwd(pass, w, call, kind, res)
    				return true
    			}
    
    			// If the call is to another function in this package,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/ClosureBackedRuleActionTest.groovy

        def "one arg closure called with subject and no inputs"() {
            given:
            def called = false
            String thing = "1"
            def closure = { String val ->
                called = true
                assert val.is(thing)
                assert delegate.is(thing)
            }
    
            when:
            action(closure).execute(thing, [])
    
            then:
            called
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. cluster/addons/calico-policy-controller/typha-vertical-autoscaler-deployment.yaml

    kind: Deployment
    apiVersion: apps/v1
    metadata:
      name: calico-typha-vertical-autoscaler
      namespace: kube-system
      labels:
        k8s-app: calico-typha-autoscaler
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      replicas: 1
      selector:
        matchLabels:
          k8s-app: calico-typha-autoscaler
      template:
        metadata:
          labels:
            k8s-app: calico-typha-autoscaler
        spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top