Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for interop (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

    using ::tensorflow::quantization::PyFunctionLibrary;
    
    bool IsControlFlowV1Op(Operation* op) {
      return mlir::isa<mlir::tf_executor::SwitchOp, mlir::tf_executor::MergeOp,
                       mlir::tf_executor::EnterOp, mlir::tf_executor::ExitOp,
                       mlir::tf_executor::NextIterationSinkOp,
                       mlir::tf_executor::NextIterationSourceOp>(op);
    }
    
    mlir::LogicalResult IsValidGraph(mlir::ModuleOp module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        // as well. For example there is Enter and RefEnter op. RefEnter forwards
        // the input ref buffer to output. However both Enter and RefEnter are
        // mapped to tf_executor::EnterOp during import. Check if it is a Ref op to
        // correctly map to the TensorFlow Graph op.
        if (IsRefTypeControlOp(inst)) op_name = "Ref";
        TF_ASSIGN_OR_RETURN(auto tf_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. go.mod

    	github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
    	github.com/jcmturner/rpc/v2 v2.0.3 // indirect
    	github.com/jedib0t/go-pretty/v6 v6.5.9 // indirect
    	github.com/jessevdk/go-flags v1.5.0 // indirect
    	github.com/josharian/intern v1.0.0 // indirect
    	github.com/juju/ratelimit v1.0.2 // indirect
    	github.com/kr/fs v0.1.0 // indirect
    	github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
    	github.com/lestrrat-go/blackmagic v1.0.2 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. docs/pt/docs/deployment/docker.md

    Então, você rodaria **vários contêineres** com coisas diferentes, como um banco de dados, uma aplicação Python, um servidor web com uma aplicação frontend React, e conectá-los juntos via sua rede interna.
    
    Todos os sistemas de gerenciamento de contêineres (como Docker ou Kubernetes) possuem essas funcionalidades de rede integradas a eles.
    
    ## Contêineres e Processos
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    class SliceDenseIntElementsAttr<string index, string axis> : NativeCodeCall<
      "SliceDenseIntElementsAttr($0.cast<ElementsAttr>(), " # index # ", " # axis # ")">;
    
    // Interior padding attribute based on the TF padding.
    def GetInteriorPadding : NativeCodeCall <
      "GetInteriorPadding($0.cast<ElementsAttr>())">;
    
    def : Pat<(TF_PadV2Op $input, (ConstantLikeMatcher ElementsAttr:$padding), $c),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais.go

    // induceSubL_8_32 leaves behind only the leftmost L-type text
    // index for each LMS-substring. That is, it removes the final S-type
    // indexes that are present on entry, and it inserts but then removes
    // the interior L-type indexes too.
    // (Only the leftmost L-type index is needed by induceSubS_8_32.)
    func induceSubL_8_32(text []byte, sa, freq, bucket []int32) {
    	// Initialize positions for left side of character buckets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. src/encoding/base32/base32.go

    		p = p[i:]
    		if e.nbuf < 5 {
    			return
    		}
    		e.enc.Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:8]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 5 {
    		nn := len(e.out) / 8 * 5
    		if nn > len(p) {
    			nn = len(p)
    			nn -= nn % 5
    		}
    		e.enc.Encode(e.out[0:], p[0:nn])
    		if _, e.err = e.w.Write(e.out[0 : nn/5*8]); e.err != nil {
    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/cmd/vendor/golang.org/x/mod/sumdb/client.go

    		// No change to our present, so no update of config file.
    		return nil
    	}
    
    	// Flush our extended timeline back out to the configuration file.
    	// If the configuration file has been updated in the interim,
    	// we need to merge any updates made there as well.
    	// Note that writeConfig is an atomic compare-and-swap.
    	for {
    		msg, err := c.ops.ReadConfig(c.name + "/latest")
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/encoding/base64/base64.go

    		p = p[i:]
    		if e.nbuf < 3 {
    			return
    		}
    		e.enc.Encode(e.out[:], e.buf[:])
    		if _, e.err = e.w.Write(e.out[:4]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 3 {
    		nn := len(e.out) / 4 * 3
    		if nn > len(p) {
    			nn = len(p)
    			nn -= nn % 3
    		}
    		e.enc.Encode(e.out[:], p[:nn])
    		if _, e.err = e.w.Write(e.out[0 : nn/3*4]); e.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  10. docs/pt/docs/alternatives.md

    Ele também não controla modelos aninhados muito bem. Então, se o corpo JSON na requisição for um objeto JSON que contém campos internos que contém objetos JSON aninhados, ele não consegue ser validado e documentado apropriadamente.
    
    !!! check "**FastAPI** inspirado para"
        Usar tipos Python para ter um ótimo suporte do editor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top