Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 982 for nextB (0.14 sec)

  1. src/internal/trace/order.go

    	}
    	// Update the state of the next goroutine.
    	nextGState.status = go122.GoRunning
    	nextGState.seq = seq
    	newCtx := curCtx
    	newCtx.G = nextg
    
    	// Queue an event for the next goroutine starting to run.
    	startCtx := curCtx
    	startCtx.G = NoGoroutine
    	o.queue.push(makeEvent(evt, startCtx, go122.EvGoStart, ev.time, uint64(nextg), ev.args[1]))
    	return newCtx, true, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug_test.go

    			bytes, err := cmd.CombinedOutput()
    			if err != nil && len(bytes) == 0 {
    				t.Fatalf("step/next histories differ, diff command %s failed with error=%v", line, err)
    			}
    			t.Fatalf("step/next histories differ, diff=\n%s", string(bytes))
    		}
    	}
    }
    
    type dbgr interface {
    	start()
    	stepnext(s string) bool // step or next, possible with parameter, gets line etc.  returns true for success, false for unsure response
    	quit()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/fake_quant.mlir

    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         buffer: 2,
    // CHECK-NEXT:         name: "tfl.fake_quant",
    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       } ],
    // CHECK-NEXT:       inputs: [ 0 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/iter/pull_test.go

    var yieldSlot2 func(int, int) bool
    
    func TestPullPanic(t *testing.T) {
    	t.Run("next", func(t *testing.T) {
    		next, stop := Pull(panicSeq())
    		if !panicsWith("boom", func() { next() }) {
    			t.Fatal("failed to propagate panic on first next")
    		}
    		// Make sure we don't panic again if we try to call next or stop.
    		if _, ok := next(); ok {
    			t.Fatal("next returned true after iterator panicked")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/cast_bf16.mlir

    // CHECK-NEXT:          name: "arg0",
    // CHECK-NEXT:          quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:          },
    // CHECK-NEXT:          has_rank: true
    // CHECK-NEXT:        }, {
    // CHECK-NEXT:          shape: [ 4, 5 ],
    // CHECK-NEXT:          buffer: 2,
    // CHECK-NEXT:          name: "cast1",
    // CHECK-NEXT:          quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:          },
    // CHECK-NEXT:          has_rank: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 21:28:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/end2end/quant_stats.pbtxt

    # CHECK-NEXT:      }, {
    # CHECK-NEXT:        shape: [ 4 ],
    # CHECK-NEXT:        type: UINT8,
    # CHECK-NEXT:        buffer: 2,
    # CHECK-NEXT:        name: "input1",
    # CHECK-NEXT:        quantization: {
    # CHECK-NEXT:          scale: [ 0.023529 ],
    # CHECK-NEXT:          zero_point: [ 128 ]
    # CHECK-NEXT:        },
    # CHECK-NEXT:        has_rank: true
    # CHECK-NEXT:      }, {
    # CHECK-NEXT:        shape: [ 4 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/ifrt/lower_to_ifrt_restore_variable.mlir

    // multiple variables
    
    // CHECK-LABEL:   func.func @restore_multiple() {
    // CHECK-NEXT:     [[PREFIX:%.*]] = "tf.Const"()
    // CHECK-NEXT:     [[SLICE:%.*]] = "tf.Const"()
    // CHECK-NEXT:     [[NAME:%.*]] = "tf.Const"()
    // CHECK-NEXT:     [[HANDLEY:%.*]] = "tf.VarHandleOp"() <{container = "x", shared_name = "y"}> : () -> tensor<!tf_type.resource<tensor<3x1xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/modify_io_nodes.mlir

    // CHECK-LABEL: func @modified(%arg0: tensor<1x224x224x3xf32>) -> tensor<1x401408xf32>
    // CHECK-NEXT: %[[shape:.*]] = arith.constant dense<[1, 401408]> : tensor<2xi32>
    // CHECK-NEXT: %[[q:.*]] = "tfl.quantize"(%arg0) <{qtype = tensor<1x224x224x3x!quant.uniform<i8:f32, 7.812500e-03>>}> : (tensor<1x224x224x3xf32>) -> tensor<1x224x224x3x!quant.uniform<i8:f32, 7.812500e-03>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. src/internal/trace/internal/oldtrace/order.go

    		next = gState{noseq, gRunnable}
    		return
    	case EvGoUnblock, EvGoSysExit:
    		g = ev.Args[0]
    		init = gState{ev.Args[1], gWaiting}
    		next = gState{ev.Args[1] + 1, gRunnable}
    		return
    	case EvGoUnblockLocal, EvGoSysExitLocal:
    		g = ev.Args[0]
    		init = gState{noseq, gWaiting}
    		next = gState{seqinc, gRunnable}
    		return
    	case EvGCStart:
    		g = garbage
    		init = gState{ev.Args[0], gDead}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-prefer-tf2xla.mlir

      // CHECK-NEXT:  %17 = mhlo.maximum %14, %16 : tensor<1x300x300x40xf32>
      // CHECK-NEXT:  %18 = mhlo.constant dense<1.270000e+02> : tensor<f32>
      // CHECK-NEXT:  %19 = "mhlo.broadcast_in_dim"(%18) <{broadcast_dimensions = dense<> : tensor<0xi64>}> : (tensor<f32>) -> tensor<1x300x300x40xf32>
      // CHECK-NEXT:  %20 = mhlo.clamp %4, %17, %19 : tensor<1x300x300x40xf32>
      // CHECK-NEXT:  %21 = mhlo.round_nearest_even %20 : tensor<1x300x300x40xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top