Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 124 for opset (0.05 sec)

  1. src/cmd/compile/internal/ssa/poset_test.go

    		default:
    			panic("unimplemented")
    		}
    
    		if false {
    			po.DotDump(fmt.Sprintf("op%d.dot", idx), fmt.Sprintf("Last op: %v", op))
    		}
    
    		po.CheckIntegrity()
    	}
    
    	// Check that the poset is completely empty
    	if err := po.CheckEmpty(); err != nil {
    		t.Error(err)
    	}
    }
    
    func TestPoset(t *testing.T) {
    	testPosetOps(t, false, []posetTestOp{
    		{Ordered_Fail, 123, 124},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  2. src/runtime/os_linux.go

    	}
    
    	// Disable signals during clone, so that the new thread starts
    	// with signals disabled. It will enable them in minit.
    	var oset sigset
    	sigprocmask(_SIG_SETMASK, &sigset_all, &oset)
    	ret := retryOnEAGAIN(func() int32 {
    		r := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(abi.FuncPCABI0(mstart)))
    		// clone returns positive TID, negative errno.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. cmd/endpoint.go

    						hostIPCache[host] = hostIPSet
    					}
    				}
    				if IPSet, ok := pathIPMap[endpoint.Path]; ok {
    					if !IPSet.Intersection(hostIPSet).IsEmpty() {
    						return nil, setupType,
    							config.ErrInvalidErasureEndpoints(nil).Msg(fmt.Sprintf("same path '%s' can not be served by different port on same address", endpoint.Path))
    					}
    					pathIPMap[endpoint.Path] = IPSet.Union(hostIPSet)
    				} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      LOG(INFO) << "odml_to_stablehlo is being deprecated, please use "
                   "TFlite converter with flag: "
                   "converter.target_spec.supported_ops = "
                   "[tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS] ";
    
      mlir::odml::initAllPasses();
      mlir::PassPipelineCLParser passPipeline("", "Add available compiler passes.");
      llvm::cl::ParseCommandLineOptions(argc, argv, "ODML StableHLO Bridge.\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/runtime/sys_freebsd_386.s

    	MOVL	$0, 0(SP)		// syscall gap
    	MOVL	how+0(FP), AX		// arg 1 - how
    	MOVL	AX, 4(SP)
    	MOVL	new+4(FP), AX
    	MOVL	AX, 8(SP)		// arg 2 - set
    	MOVL	old+8(FP), AX
    	MOVL	AX, 12(SP)		// arg 3 - oset
    	MOVL	$SYS_sigprocmask, AX
    	INT	$0x80
    	JAE	2(PC)
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    // int32 runtime·kqueue(void);
    TEXT runtime·kqueue(SB),NOSPLIT,$0
    	MOVL	$SYS_kqueue, AX
    	INT	$0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. src/runtime/sys_netbsd_amd64.s

    	SYSCALL
    	JCC	2(PC)
    	MOVL	$0xf1, 0xf1		// crash
    	RET
    
    TEXT runtime·sigprocmask(SB),NOSPLIT,$0
    	MOVL	how+0(FP), DI		// arg 1 - how
    	MOVQ	new+8(FP), SI		// arg 2 - set
    	MOVQ	old+16(FP), DX		// arg 3 - oset
    	MOVL	$SYS___sigprocmask14, AX
    	SYSCALL
    	JCC	2(PC)
    	MOVL	$0xf1, 0xf1		// crash
    	RET
    
    TEXT sigreturn_tramp<>(SB),NOSPLIT,$-8
    	MOVQ	R15, DI			// Load address of ucontext
    	MOVQ	$SYS_setcontext, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/BUILD

        ],
        copts = ["-O3"],
        deprecation = "odml_to_stablehlo is being deprecated, please use TFlite converter with flag: " +
                      "converter.target_spec.supported_ops = " +
                      " [tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS]",
        deps = [
            ":check_accepted_ops_pass",
            ":op_stat_pass",
            ":stablehlo_util",
            ":transforms",
            "//tensorflow/cc/saved_model:loader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. src/runtime/sys_dragonfly_amd64.s

    	MOVL	$331, AX		// sys_sched_yield
    	SYSCALL
    	RET
    
    TEXT runtime·sigprocmask(SB),NOSPLIT,$0
    	MOVL	how+0(FP), DI		// arg 1 - how
    	MOVQ	new+8(FP), SI		// arg 2 - set
    	MOVQ	old+16(FP), DX		// arg 3 - oset
    	MOVL	$340, AX		// sys_sigprocmask
    	SYSCALL
    	JAE	2(PC)
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    // int32 runtime·kqueue(void);
    TEXT runtime·kqueue(SB),NOSPLIT,$0
    	MOVQ	$0, DI
    	MOVQ	$0, SI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		}
    
    		startTime := time.Now()
    		txnResp, err := s.client.KV.Txn(ctx).If(
    			clientv3.Compare(clientv3.ModRevision(key), "=", origState.rev),
    		).Then(
    			clientv3.OpDelete(key),
    		).Else(
    			clientv3.OpGet(key),
    		).Commit()
    		metrics.RecordEtcdRequest("delete", s.groupResourceString, err, startTime)
    		if err != nil {
    			return err
    		}
    		if !txnResp.Succeeded {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. src/runtime/sys_netbsd_arm64.s

    	RET
    fail:
    	MOVD	$0, R0
    	MOVD	R0, (R0)		// crash
    
    TEXT runtime·sigprocmask(SB),NOSPLIT,$0
    	MOVW	how+0(FP), R0		// arg 1 - how
    	MOVD	new+8(FP), R1		// arg 2 - set
    	MOVD	old+16(FP), R2		// arg 3 - oset
    	SVC	$SYS___sigprocmask14
    	BCS	fail
    	RET
    fail:
    	MOVD	$0, R0
    	MOVD	R0, (R0)		// crash
    
    TEXT sigreturn_tramp<>(SB),NOSPLIT,$-8
    	MOVD	g, R0
    	SVC	$SYS_setcontext
    	MOVD	$0, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top