Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for pattern1 (0.33 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      return IsBounded(updated);
    }
    
    // Propagates more refined type by cloning op using the new operands. This
    // allows all rewrite patterns that requires refined types to work without
    // requiring a rewrite to the conversion pattern. Declarative rewrite pattern
    // (DRR) doesn't even support conversion patterns with TableGen.
    class TypePropagator : public ConversionPattern {
     public:
      explicit TypePropagator(MLIRContext* ctx)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla_passes.h

    template <typename T>
    class OperationPass;
    class Pass;
    
    namespace mhlo {
    
    /// Converter to be used along with the fallback Tf2Xla patterns below.
    class Tf2XlaTypeConverter : public TypeConverter {
     public:
      Tf2XlaTypeConverter();
    };
    
    /// Adds the TF to XLA via TF2XLA rewrite patterns to the pattern list.
    /// `prefer_tf2xla` means an op will be included iff it is not in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    /// Converts the provided Operation as well as all nested operations into HLO
    /// dialect using the conversion patterns registered by the HLO dialect. When
    /// allow_partial_conversion is false, emits an error if there is any operation
    /// that can't be legalized.
    /// When `tf2xla_fallback_device_type` is not `None`, also uses legalization
    /// patterns from TF2XLA fallback for provided device type (see
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

    import spock.lang.Issue
    
    class ConfigurationCacheFileTreeIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        @Issue('https://github.com/gradle/gradle/issues/19780')
        def "filter predicates and matching patterns are evaluated lazily"() {
            given:
            buildFile """
                abstract class PrintInputs extends DefaultTask {
    
                    @InputFiles
                    abstract ConfigurableFileCollection getInputFiles()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pom.xml

    							<licenseFamilyName>GNU Lesser General Public License</licenseFamilyName>
    							<notes />
    							<patterns>
    								<pattern>This library is free software; you can redistribute it</pattern>
    								<pattern>GNU Lesser General Public License</pattern>
    							</patterns>
    						</license>
    					</licenses>
    					<licenseFamilies>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/path/filepath/match.go

    	for len(pattern) > 0 && pattern[0] == '*' {
    		pattern = pattern[1:]
    		star = true
    	}
    	inrange := false
    	var i int
    Scan:
    	for i = 0; i < len(pattern); i++ {
    		switch pattern[i] {
    		case '\\':
    			if runtime.GOOS != "windows" {
    				// error check handled in matchChunk: bad pattern.
    				if i+1 < len(pattern) {
    					i++
    				}
    			}
    		case '[':
    			inrange = true
    		case ']':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      void runOnOperation() override {
        auto func = getOperation();
        RewritePatternSet patterns(&getContext());
        patterns.add<OutlineGELU>(&getContext());
        if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
          signalPassFailure();
        }
      }
    };
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// x-kubernetes-int-or-string specifies that this value is
    	// either an integer or a string. If this is true, an empty
    	// type is allowed and type as child of anyOf is permitted
    	// if following one of the following patterns:
    	//
    	// 1) anyOf:
    	//    - type: integer
    	//    - type: string
    	// 2) allOf:
    	//    - anyOf:
    	//      - type: integer
    	//      - type: string
    	//    - ... zero or more
    	XIntOrString bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/runtime/os3_plan9.go

    		print("sighandler: note is longer than ERRMAX\n")
    		goto Throw
    	}
    	if isAbortPC(c.pc()) {
    		// Never turn abort into a panic.
    		goto Throw
    	}
    	// See if the note matches one of the patterns in sigtab.
    	// Notes that do not match any pattern can be handled at a higher
    	// level by the program but will otherwise be ignored.
    	flags = _SigNotify
    	for sig, t = range sigtable {
    		if stringslite.HasPrefix(notestr, t.name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. internal/event/rules.go

    type Rules map[string]TargetIDSet
    
    // Add - adds pattern and target ID.
    func (rules Rules) Add(pattern string, targetID TargetID) {
    	rules[pattern] = NewTargetIDSet(targetID).Union(rules[pattern])
    }
    
    // MatchSimple - returns true one of the matching object name in rules.
    func (rules Rules) MatchSimple(objectName string) bool {
    	for pattern := range rules {
    		if wildcard.MatchSimple(pattern, objectName) {
    			return true
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top