Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for bidirectional (0.24 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

               TFL_StatefulOp,
               QuantizableResult,
               DynamicRangeQuantizedOpInterface]> {
      let summary = "Bidirectional sequence lstm operator";
    
      let description = [{
        Bidirectional lstm is essentially two lstms, one running forward & the
        other running backward. And the output is the concatenation of the two
        lstms.
      }];
    
      let arguments = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If no direction is given, the channel is
    <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignments">assignment</a> or
    explicit <a href="#Conversions">conversion</a>.
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    		f = MakeFunc(TypeOf(f), func([]Value) []Value {
    			var w io.WriteCloser = &WC{}
    			return []Value{ValueOf(&w).Elem()}
    		}).Interface().(func() io.ReadWriteCloser)
    		f()
    	})
    	// Directional channels can't be assigned to bidirectional ones.
    	shouldPanic("", func() {
    		var f func() chan int
    		f = MakeFunc(TypeOf(f), func([]Value) []Value {
    			var c <-chan int = make(chan int)
    			return []Value{ValueOf(c)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

     }} - mountPath: /etc/ambient-config name: cni-ambient-config-dir - mountPath: /var/run/netns mountPropagation: HostToContainer name: cni-netns-dir {{- if eq .Values.cni.ambient.redirectMode "ebpf"}} - mountPath: /sys/fs/bpf mountPropagation: Bidirectional name: cni-bpffs-dir {{- end }} {{ end }} resources: {{- if .Values.cni.resources }} {{ toYaml .Values.cni.resources | trim | indent 12 }} {{- else }} {{ toYaml .Values.global.defaultResources | trim | indent 12 }} {{- end }} volumes: # Used to...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	if typ.Kind() != Chan {
    		panic("reflect.MakeChan of non-chan type")
    	}
    	if buffer < 0 {
    		panic("reflect.MakeChan: negative buffer size")
    	}
    	if typ.ChanDir() != BothDir {
    		panic("reflect.MakeChan: unidirectional channel type")
    	}
    	t := typ.common()
    	ch := makechan(t, buffer)
    	return Value{t, ch, flag(Chan)}
    }
    
    // MakeMap creates a new map with the specified type.
    func MakeMap(typ Type) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top