Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,281 for terminator (0.33 sec)

  1. src/encoding/xml/xml.go

    			if b, ok = d.mustgetc(); !ok {
    				return nil, d.err
    			}
    			if b != '-' {
    				d.err = d.syntaxError("invalid sequence <!- not part of <!--")
    				return nil, d.err
    			}
    			// Look for terminator.
    			d.buf.Reset()
    			var b0, b1 byte
    			for {
    				if b, ok = d.mustgetc(); !ok {
    					return nil, d.err
    				}
    				d.buf.WriteByte(b)
    				if b0 == '-' && b1 == '-' {
    					if b != '>' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

    // Adds the corresponding sizes of tensor list buffers in block's terminator
    // to the list of return values. Returns the mapping from the buffer
    // indices to the added size indices, which is a list of tuples
    // (buffer_return_index, size_return_index, fixed_size).
    template <class TerminatorOp>
    llvm::SmallVector<std::tuple<int64_t, int64_t, bool>, 8>
    AddTensorListSizesToTerminator(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    			lds.Lscnum = f.getXCOFFscnum(ldr.SymSect(sym))
    		case XTY_IMP:
    			lds.Lifile = int32(f.dynLibraries[ldr.SymDynimplib(sym)] + 1)
    		}
    		ldstr := &XcoffLdStr64{
    			size: uint16(len(ldr.SymName(sym)) + 1), // + null terminator
    			name: ldr.SymName(sym),
    		}
    		stlen += uint32(2 + ldstr.size) // 2 = sizeof ldstr.size
    		symtab = append(symtab, lds)
    		strtab = append(strtab, ldstr)
    
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
      if (auto launch_op = dyn_cast<tf_device::LaunchOp>(op)) {
        auto terminator = launch_op.GetBody().getTerminator();
        return RefineTypeForPassThroughOperands(op, terminator->getOperands(),
                                                op->getResults());
      }
      if (auto cluster_op = dyn_cast<tf_device::ClusterOp>(op)) {
        auto terminator = cluster_op.GetBody().getTerminator();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

      bool isLegalToInline(Operation *op, Region *dest, bool wouldBeCloned,
                           IRMapping &) const final {
        return true;
      }
    
      // Handle the given inlined terminator by replacing it with a new operation
      // as necessary. Required when the region has only one block.
      void handleTerminator(Operation *op, ValueRange valuesToRepl) const final {
        auto retValOp = dyn_cast<TFRReturnOp>(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    	paxHdrs = make(map[string]string)
    
    	var whyNoUSTAR, whyNoPAX, whyNoGNU string
    	var preferPAX bool // Prefer PAX over USTAR
    	verifyString := func(s string, size int, name, paxKey string) {
    		// NUL-terminator is optional for path and linkpath.
    		// Technically, it is required for uname and gname,
    		// but neither GNU nor BSD tar checks for it.
    		tooLong := len(s) > size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        const int64_t output_names_size = output_names.size();
        TF_RET_CHECK(output_names_size == num_data_results)
            << "output names (" << output_names.size()
            << ") != terminator operands (" << num_data_results << ")";
        llvm::DenseMap<Operation*, llvm::StringRef> output_op_to_name;
        llvm::StringMap<Operation*> name_to_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

        const int64_t output_names_size = output_names.size();
        TF_RET_CHECK(output_names_size == num_data_results)
            << "output names (" << output_names.size()
            << ") != terminator operands (" << num_data_results << ")";
        llvm::DenseMap<Operation*, llvm::StringRef> output_op_to_name;
        llvm::StringMap<Operation*> name_to_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

            return failure();
          }
    
          // If the op is terminator, not quantizable or any ops from the mlir quant
          // ops dialect, we shouldn't rewrite. In case of whole-model verify debug
          // mode, not-quantizable ops should be duplicated to keep parallel
          // float/quant model execution.
          if (quantizing_op->hasTrait<OpTrait::IsTerminator>()) {
            return failure();
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. src/html/template/escape.go

    			switch c.state {
    			case stateJSBlockCmt:
    				// https://es5.github.io/#x7.4:
    				// "Comments behave like white space and are
    				// discarded except that, if a MultiLineComment
    				// contains a line terminator character, then
    				// the entire comment is considered to be a
    				// LineTerminator for purposes of parsing by
    				// the syntactic grammar."
    				if bytes.ContainsAny(s[written:i1], "\n\r\u2028\u2029") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top