Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for body_fn (0.26 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        results: a list of futures.
        body_fn: its input are [predicate_promise, arg0_future, arg0_promise, arg1_future, arg1_promise, ..., invariant_args] and has no returned results.
      }];
    
      let arguments = (ins TFTensorType:$cond,
                           Variadic<TFTensorType>:$arguments,
                           FlatSymbolRefAttr:$body_fn,
                           I32Attr:$invariant_size);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal.go

    			t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{ClassUniversal, tag, bodyLen, isCompound}))
    
    			tt := new(taggedEncoder)
    
    			tt.body = t
    
    			tt.tag = bytesEncoder(appendTagAndLength(tt.scratch[:0], tagAndLength{
    				class:      class,
    				tag:        *params.tag,
    				length:     bodyLen + t.tag.Len(),
    				isCompound: true,
    			}))
    
    			return tt, nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

    }
    
    LogicalResult FindOwningWhileOp(func::FuncOp body_func, ModuleOp module,
                                    TF::WhileOp* while_op) {
      // Given a while loop body function 'body_func', find the tf.While Op that
      // uses it.
      auto uses_optional = body_func.getSymbolUses(module);
      if (!uses_optional.has_value()) {
        body_func.emitOpError() << "no use of while loop body";
        return LogicalResult::failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/net/http/clientserver_test.go

    }
    
    func h12requestContentLength(t *testing.T, bodyfn func() io.Reader, wantLen int64) {
    	h12Compare{
    		Handler: func(w ResponseWriter, r *Request) {
    			w.Header().Set("Got-Length", fmt.Sprint(r.ContentLength))
    			fmt.Fprintf(w, "Req.ContentLength=%v", r.ContentLength)
    		},
    		ReqFunc: func(c *Client, url string) (*Response, error) {
    			return c.Post(url, "text/plain", bodyfn())
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
Back to top