Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for yield4 (0.31 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            rng.uniform(low=0.0, high=1.0, size=static_input_shape).astype(
                np.float32
            )
        )
    
        def data_gen() -> repr_dataset.RepresentativeDataset:
          for _ in range(100):
            yield {
                'input_tensor': rng.uniform(
                    low=0.0, high=1.0, size=static_input_shape
                ).astype(np.float32)
            }
    
        dataset_path = self.create_tempfile('tfrecord').full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. src/reflect/type.go

    // isPaddedField reports whether the i'th field of struct type t is followed
    // by padding.
    func isPaddedField(t Type, i int) bool {
    	field := t.Field(i)
    	if i+1 < t.NumField() {
    		return field.Offset+field.Type.Size() != t.Field(i+1).Offset
    	}
    	return field.Offset+field.Type.Size() != t.Size()
    }
    
    // StructOf returns the struct type containing fields.
    // The Offset and Index fields are ignored and computed as they would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // profile that event by storing a pointer to the lock in its "to be profiled
    // upon unlock" field. If that field is already set, it uses the relative
    // magnitudes to weight a random choice between itself and the other lock, with
    // the loser's time being added to the "additional contention" field. Otherwise
    // if the M's call stack buffer is occupied, it does the comparison against that
    // sample's magnitude.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      auto saved_pos = op_builder.saveInsertionPoint();
      op_builder.setInsertionPointToEnd(&region.front());
      mlir::Operation* cloned_op = op_builder.clone(*op);
      // Add the yield operation.
      op_builder.create<mlir::TFL::YieldOp>(op_loc, cloned_op->getResults());
      // Now emit into the function body again.
      op_builder.restoreInsertionPoint(saved_pos);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

        %7 = "tf.FakeQuantWithMinMaxVarsPerChannel"(%arg1, %arg2, %arg3) {device = "", narrow_range = false, num_bits = 8 : i64} : (tensor<*xf32>, tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        "tfl.yield"(%7) : (tensor<*xf32>) -> ()
      }) {device = "", narrow_range = false, num_bits = 8 : i64} : (tensor<3x4xf32>, tensor<4xf32>, tensor<4xf32>) -> tensor<3x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    					if key == nil {
    						check.errorf(kv, InvalidLitField, "invalid field name %s in struct literal", kv.Key)
    						continue
    					}
    					i := fieldIndex(utyp.fields, check.pkg, key.Name, false)
    					if i < 0 {
    						var alt Object
    						if j := fieldIndex(fields, check.pkg, key.Name, true); j >= 0 {
    							alt = fields[j]
    						}
    						msg := check.lookupError(base, key.Name, alt, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    	// filters fail, we don't run the second pass.
    	// We consider only equal or higher priority pods in the first pass, because
    	// those are the current "pod" must yield to them and not take a space opened
    	// for running them. It is ok if the current "pod" take resources freed for
    	// lower priority pods.
    	// Requiring that the new pod is schedulable in both circumstances ensures that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. src/time/time.go

    	// a 33-bit seconds field, and a 30-bit wall time nanoseconds field.
    	// The nanoseconds field is in the range [0, 999999999].
    	// If the hasMonotonic bit is 0, then the 33-bit field must be zero
    	// and the full signed 64-bit wall seconds since Jan 1 year 1 is stored in ext.
    	// If the hasMonotonic bit is 1, then the 33-bit field holds a 33-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    					if key == nil {
    						check.errorf(kv, InvalidLitField, "invalid field name %s in struct literal", kv.Key)
    						continue
    					}
    					i := fieldIndex(fields, check.pkg, key.Value, false)
    					if i < 0 {
    						var alt Object
    						if j := fieldIndex(fields, check.pkg, key.Value, true); j >= 0 {
    							alt = fields[j]
    						}
    						msg := check.lookupError(base, key.Value, alt, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    		var churn func(i int)
    		churn = func(i int) {
    			SetGoroutineLabels(WithLabels(ctx, Labels(t.Name()+"-churn-i", fmt.Sprint(i))))
    			if i == 0 {
    				ready.Done()
    			} else if i%16 == 0 {
    				// Yield on occasion so this sequence of goroutine launches
    				// doesn't monopolize a P. See issue #52934.
    				runtime.Gosched()
    			}
    			if ctx.Err() == nil {
    				go churn(i + 1)
    			}
    		}
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top