Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,185 for callGo (0.24 sec)

  1. src/runtime/asm_riscv64.s

    	MOV	A2, 32(X2)
    	MOV	X25, 40(X2)
    	CALL	runtime·reflectcallmove(SB)
    	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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  2. src/runtime/asm_s390x.s

    	BL	runtime·reflectcallmove(SB)
    	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: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

      for (auto& function_use : function_uses.value()) {
        auto call_op = function_use.getUser();
        auto caller_func = call_op->getParentOfType<func::FuncOp>();
        if (!caller_func) return failure();
    
        builder.setInsertionPoint(call_op);
        for (auto [lifted_op, arg_idx] : lifted_op_and_arg_idx) {
          auto new_op = builder.clone(*lifted_op, mapping);
          call_op->insertOperands(arg_idx, new_op->getResult(0));
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/runtime/asm_loong64.s

    	JAL	runtime·reflectcallmove(SB)
    	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 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top