Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for bidirectional (0.19 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

    LogicalResult ConvertTFAssertOp::matchAndRewrite(
        Operation* op, PatternRewriter& rewriter) const {
      rewriter.eraseOp(op);
      return success();
    }
    
    // Legalize unidirectional sequence lstm.
    struct LegalizeUnidirectionalSequenceLstm : public RewritePattern {
      explicit LegalizeUnidirectionalSequenceLstm(MLIRContext* context)
          : RewritePattern(kUnidirectionalSequenceLstm, 1, context) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    * [alpha] Mount namespace propagation
    
      * The `VolumeMount.Propagation` field for `VolumeMount` in pod containers is now available.
    
      * You can now set `VolumeMount.Propagation` to `Bidirectional` to enable a particular mount for a container to propagate itself to the host or other containers.
    
    * [alpha] Improve Flex volume deployment
    
      * Flex volume driver deployment is simplified in the following ways:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

          pass_manager->addPass(mlir::TFL::CreateReduceTypePrecisionPass());
        }
    
        // This pass should be always at the end of the model
        // conversion (even after quantization). Some TFL ops like unidirectional
        // sequence lstm will have stateful operands and some optimization passes
        // will merge those operands if they have identical values & types. However,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Note that this mode is recursively applied to all mounts in the volume
    	// ("rshared" in Linux terminology).
    	MountPropagationBidirectional MountPropagationMode = "Bidirectional"
    )
    
    // RecursiveReadOnlyMode describes recursive-readonly mode.
    type RecursiveReadOnlyMode string
    
    const (
    	// RecursiveReadOnlyDisabled disables recursive-readonly mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      proj_clip: float; // Optional, 0.0 means no clipping
    
      // If true then first dimension is sequence, otherwise batch.
      time_major:bool;
    
      // Parameter for Unidirectional Sequence LSTM version 4.
      asymmetric_quantize_inputs:bool;
    }
    
    table BidirectionalSequenceLSTMOptions {
      // Parameters supported by version 1:
      fused_activation_function:ActivationFunctionType;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      proj_clip: float; // Optional, 0.0 means no clipping
    
      // If true then first dimension is sequence, otherwise batch.
      time_major:bool;
    
      // Parameter for Unidirectional Sequence LSTM version 4.
      asymmetric_quantize_inputs:bool;
    }
    
    table BidirectionalSequenceLSTMOptions {
      // Parameters supported by version 1:
      fused_activation_function:ActivationFunctionType;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    }
    
    type streamAndReply struct {
    	httpstream.Stream
    	replySent <-chan struct{}
    }
    
    // CreateSPDYServerStreams upgrades the passed HTTP request to a SPDY bi-directional streaming
    // connection with remote command streams defined in passed options. Returns a streamContext
    // structure containing the Reader/Writer streams to communicate through the SDPY connection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    				// of unnamed types, all matching against the same type parameter, we infer the
    				// directed channel if there is one, independent of order.
    				// Selecting a directional channel, if any, ensures that a value of another
    				// inexactly unifying channel type remains assignable (go.dev/issue/62157).
    				//
    				// If we have multiple defined channel types, they are either identical or we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    				// of unnamed types, all matching against the same type parameter, we infer the
    				// directed channel if there is one, independent of order.
    				// Selecting a directional channel, if any, ensures that a value of another
    				// inexactly unifying channel type remains assignable (go.dev/issue/62157).
    				//
    				// If we have multiple defined channel types, they are either identical or we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar.go

    			// If a route defines `*.com` and we import `a.com`, it will not match
    			match = vsHost.SubsetOf(importedHost)
    		} else {
    			// The old way. We check Matches which is bi-directional. This is for backwards compatibility
    			match = vsHost.Matches(importedHost)
    		}
    		if match {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top