Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Luminance (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      // success if union operation was completed successfully, otherwise returns
      // failure.
      //
      // Members can be clustered together:
      //   1. This will not break dominance property of the IR.
      //   2. New clustering policy constraints can be propagated through the
      //      already clustered operations.
      LogicalResult Union(unsigned a, unsigned b,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          return true;
        }
      }
      return false;
    }
    
    // Sorts the operations in the provided range to enforce dominance.
    // This is useful after fusing / reorganizing Operations in a block and later
    // needing to readjust the ordering to ensure dominance.
    LogicalResult SortTopologically(Block::iterator begin, Block::iterator end) {
      Block* block = begin->getBlock();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.cc

        }
        op->dropAllDefinedValueUses();
        op->dropAllReferences();
        op->erase();
      }
      // Ensure that users of the call op's results appear after the launch op in
      // order to preserve the dominance property.
      TF::ReorderOpResultUses(call_op);
    }
    
    }  // namespace common
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    	}
    
    	// Match statements that occur after a call to t.Parallel following the final
    	// labeled statement in the function body.
    	//
    	// We iterate over lit.Body.List to have a simple, fast and "frequent enough"
    	// dominance relationship for t.Parallel(): lit.Body.List[i] dominates
    	// lit.Body.List[j] for i < j unless there is a jump.
    	var stmts []ast.Stmt
    	afterParallel := false
    	for _, stmt := range lit.Body.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

                    } else {
                        return dominant;
                    }
                }
            }
            return dominant;
        }
    
        /**
         * Merge two DOMs, with one having dominance in the case of collision. Merge mechanisms (vs. override for nodes, or
         * vs. append for children) is determined by attributes of the dominant root node.
         *
         * @see #CHILDREN_COMBINATION_MODE_ATTRIBUTE
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top