Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ShouldCompile (0.1 sec)

  1. src/regexp/exec_test.go

    				case 'i':
    					syn |= syntax.FoldCase
    				}
    			}
    
    			re, err := compile(pattern, syn, true)
    			if err != nil {
    				if shouldCompile {
    					t.Errorf("%s:%d: %#q did not compile", file, lineno, pattern)
    				}
    				continue Testing
    			}
    			if !shouldCompile {
    				t.Errorf("%s:%d: %#q should not compile", file, lineno, pattern)
    				continue Testing
    			}
    			match := re.MatchString(text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      absl::StatusOr<bool> ShouldCompileCluster(const Cluster& cluster);
    
      absl::StatusOr<bool> ClusteringWillIntroduceInterDeviceDependency(
          const Cluster& from, const Cluster& to);
    
      bool ShouldCompile(bool is_xla_compile_attr_true,
                         const DeviceType& device_type,
                         XlaOpRegistry::AutoclusteringPolicy policy) {
        return is_xla_compile_attr_true ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top