Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 773 for dialects (0.6 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Transform from TF control dialect to TF executor dialect.";
      let constructor = "CreateBreakUpIslandsPass()";
      let dependentDialects = ["mlir::tf_executor::TensorFlowExecutorDialect"];
    }
    
    def SplitIntoIslandPerOpPass : Pass<"tf-executor-split-into-island-per-op", "mlir::func::FuncOp"> {
      let summary = "Transform from TF control dialect to TF executor dialect.";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    def TfExecutor_Dialect : Dialect {
      let name = "tf_executor";
    
      let description = [{
        The TensorFlow Executor dialect.
    
        This dialect models the TensorFlow executor semantics and can represent
        arbitrary TensorFlow graphs. As such it follows the existing execution model
        that includes deadness propagation, concurrent semantics, and control
        dependencies.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/match.go

    // consider matches for this language. This corresponds to the idea that most
    // users have a strong preference for the first defined language. A user can
    // still prefer a second language over a dialect of the preferred language by
    // explicitly specifying dialects, e.g. "en, nl, en-GB". In this case pin should
    // be false.
    func (m *bestMatch) update(have *haveTag, tag language.Tag, maxScript language.Script, maxRegion language.Region, pin bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    pass for now, but should be integrated with some notion of "target" in the
    MLIR pipeline in the future.
    ### `-tf-group-by-dialect`
    
    _Groups ops into functions that only contain one dialect._
    
    Factors operations into subroutines such that all functions only
    contain a single dialect. Which of the dialects are allowed in the
    "top" function is configurable.
    
    For example, the code
      x.a()
      x.b()
      %c = y.c()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
      // Attempt dialect fallback if op's fold hook failed.
      if (failed(folded)) {
        Dialect* dialect = op->getDialect();
        if (!dialect) return failure();
        // Only attempt TF dialect fallback if there are no unknown operands.
        if (some_unknown && dialect == tf_dialect_) return failure();
        auto* interface = dialect->getRegisteredInterface<DialectFoldInterface>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                        can support POSIX, PCRE or any other dialects
                                        of regular expressions. Please read the implementation's
                                        documentation to determine the supported dialect."
                                      enum:
                                      - Exact
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                          std::pair<uint64_t, uint64_t>>
          custom_op_idx_map_;
    
      // Points to TensorFlow and TFLite dialects, respectively. nullptr if the
      // dialect is not registered.
      const Dialect* tf_dialect_;
      const Dialect* tfl_dialect_;
      const Dialect* vhlo_dialect_;
    
      // The failed ops during legalization.
      std::map<std::string, std::set<std::string>> failed_flex_ops_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/DialectVersion.java

        private final boolean smb2;
        private final int dialect;
    
    
        /**
         * 
         */
        private DialectVersion () {
            this.smb2 = false;
            this.dialect = -1;
        }
    
    
        private DialectVersion ( int dialectId ) {
            this.smb2 = true;
            this.dialect = dialectId;
        }
    
    
        /**
         * @return the smb2
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.td

    // Declare passes used in xla_legalize_tf.
    
    include "mlir/Pass/PassBase.td"
    
    def LegalizeTF : Pass<"xla-legalize-tf", "ModuleOp"> {
      let summary = "Legalize from TF dialect's or HLO dialect's control flow.";
    
      let description = [{
        Legalizes from TF dialect to HLO dialect. When allow_partial_conversion is
        false, emits an error if there is any operation that can't be legalized.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. tests/error_translator_test.go

    	db, err := OpenTestConnection(&gorm.Config{TranslateError: true})
    	if err != nil {
    		t.Fatalf("failed to connect database, got error %v", err)
    	}
    
    	dialectors := map[string]bool{"sqlite": true, "postgres": true, "mysql": true, "sqlserver": true}
    	if supported, found := dialectors[db.Dialector.Name()]; !(found && supported) {
    		return
    	}
    
    	DB.Migrator().DropTable(&City{})
    
    	if err = db.AutoMigrate(&City{}); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jul 12 13:21:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top