Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,058 for yield (0.08 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        logging.log_every_n(
            logging.DEBUG,
            'Running representative sample for calibration: %d / %s',
            5,
            sample_num,
            total_num_samples,
        )
        yield sample
    
      logging.info(
          'Running representative samples complete: %d / %s',
          sample_num,
          total_num_samples,
      )
    
    
    def _run_function_for_calibration_graph_mode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       *
       *  * A `SYN_RESET` frame abnormally terminates the stream.
       *  * Both input and output streams have transmitted all data and headers.
       *
       * Note that the input stream may continue to yield data even after a stream reports itself as
       * not open. This is because input data is buffered.
       */
      val isOpen: Boolean
        get() {
          this.withLock {
            if (errorCode != null) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          %x_true = ...
          %y_true = ...
          tfl.yield %x_true, %y_true : tensor<f32>, tensor<f32>
        } else {
          %x_false = ...
          %y_false = ...
          tfl.yield %x_false, %y_false : tensor<f32>, tensor<f32>
        }
        ```
    
        `tfl.if` regions are always terminated with "tfl.yield". If "tfl.if"
        defines no values, the "tfl.yield" can be left out, and will be inserted
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

      ^bb0(%arg1: tensor<8xf32>, %arg2: tensor<f32>, %arg3: tensor<f32>):
        %2 = "tf.FakeQuantWithMinMaxVars"(%arg1, %arg2, %arg3) {num_bits = 5, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
        "tfl.yield"(%2) : (tensor<8xf32>) -> ()
      }) {num_bits = 5, narrow_range = false} :  (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      ^bb0(%arg1: tensor<8xf32>, %arg2: tensor<f32>, %arg3: tensor<f32>):
        %2 = "tf.FakeQuantWithMinMaxVars"(%arg1, %arg2, %arg3) {num_bits = 3, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
        "tfl.yield"(%2) : (tensor<8xf32>) -> ()
      }) {num_bits = 3, narrow_range = false} :  (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. src/image/gif/reader.go

    		if err != io.ErrUnexpectedEOF {
    			return fmt.Errorf("gif: reading image data: %v", err)
    		}
    		return errNotEnough
    	}
    	// In theory, both lzwr and br should be exhausted. Reading from them
    	// should yield (0, io.EOF).
    	//
    	// The spec (Appendix F - Compression), says that "An End of
    	// Information code... must be the last code output by the encoder
    	// for an image". In practice, though, giflib (a widely used C
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/encoding/base32/base32.go

    				// the five valid padding lengths, and Section 9 "Illustrations and
    				// Examples" for an illustration for how the 1st, 3rd and 6th base32
    				// src bytes do not yield enough information to decode a dst byte.
    				if dlen == 1 || dlen == 3 || dlen == 6 {
    					return n, false, CorruptInputError(olen - len(src) - 1)
    				}
    				break
    			}
    			dbuf[j] = enc.decodeMap[in]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/runtime/sema.go

    		unlock(&root.lock)
    		return
    	}
    	s, t0, tailtime := root.dequeue(addr)
    	if s != nil {
    		root.nwait.Add(-1)
    	}
    	unlock(&root.lock)
    	if s != nil { // May be slow or even yield, so unlock first
    		acquiretime := s.acquiretime
    		if acquiretime != 0 {
    			// Charge contention that this (delayed) unlock caused.
    			// If there are N more goroutines waiting beyond the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

          value = graph.GetFetch().getOperand(res_index);
        } else if (auto island = dyn_cast<tf_executor::IslandOp>(op)) {
          // Control output is generated by the IslandOp, not the yield in
          // in the Island body.
          if (value == island.getControl()) break;
          value = island.GetYield().getOperand(res_index);
        } else if (isa<IdentityNOp, IdentityOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

              /*device_ordinal=*/builder.getI64IntegerAttr(0), device_type_attr),
          builder);
    }
    
    // Clones an IfRegionOp 'if_region' and attributes and creates then/else regions
    // with yield op and an empty block.
    mlir::TF::IfRegionOp CloneEmptyIfWithPredicate(mlir::TF::IfRegionOp if_region,
                                                   OpBuilder& builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top