Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for analyzing (0.11 sec)

  1. tensorflow/compiler/mlir/g3doc/overview.md

    called “lowerings”)
    
    MLIR is highly influenced by [LLVM](https://llvm.org/) and unabashedly reuses
    many great ideas from it. It has a flexible type system, and allows
    representing, analyzing and transforming graphs combining multiple levels of
    abstraction in the same compilation unit. These abstractions include TensorFlow
    operations, nested polyhedral loop regions, and even LLVM instructions and fixed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/JapaneseStopTokenFilterFactory.java

    import org.apache.lucene.analysis.StopFilter;
    import org.apache.lucene.analysis.TokenStream;
    import org.apache.lucene.analysis.ja.JapaneseAnalyzer;
    import org.apache.lucene.search.suggest.analyzing.SuggestStopFilter;
    import org.opensearch.common.settings.Settings;
    import org.opensearch.env.Environment;
    import org.opensearch.index.IndexSettings;
    import org.opensearch.index.analysis.AbstractTokenFilterFactory;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. istioctl/pkg/analyze/analyze.go

    						for _, r := range readers {
    							files = append(files, r.Name)
    						}
    						fmt.Fprintf(cmd.ErrOrStderr(), "\u2714 No validation issues found when analyzing %s.\n", strings.Join(files, "\n"))
    					} else {
    						fmt.Fprintf(cmd.ErrOrStderr(), "\u2714 No validation issues found when analyzing %s.\n", analyzeTargetAsString())
    					}
    				} else {
    					fileOrFiles := "files"
    					if parseErrors == 1 {
    						fileOrFiles = "file"
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/cmd/cover/doc.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Cover is a program for analyzing the coverage profiles generated by
    'go test -coverprofile=cover.out'.
    
    Cover is also used by 'go test -cover' to rewrite the source code with
    annotations to track which parts of each function are executed (this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationResult.java

    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * This operation represents the work of analyzing the task's inputs plus the calculating the cache key.
     *
     * <p>
     * These two operations should be captured separately, but for historical reasons we don't yet do that.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:20:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/test_passes.h

    CreateTestVisitorUtilInterruptPass();
    
    // Test operation clustering based on user defined policy.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTestClusteringPolicyPass();
    
    // Test pass for analyzing side-effect analysis result.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTestSideEffectAnalysisPass();
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateTestResourceAliasAnalysisPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

    namespace detail {
    class BacktrackAnalysis;
    class BacktrackAnalysisInfo;
    
    // Resource alias analysis information for a single function.
    class ResourceAliasAnalysisInfo {
     public:
      // Constructs analysis info by analyzing the given function.
      ResourceAliasAnalysisInfo(func::FuncOp func,
                                const BacktrackAnalysis& backtrack_analysis,
                                SymbolTableCollection& symbol_table_collection);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/test_side_effect_analysis.cc

          }
        });
      }
    
      StringRef getArgument() const final { return "tf-test-side-effect-analysis"; }
      StringRef getDescription() const final {
        return "Test pass for analyzing side-effect analysis result";
      }
    };
    
    }  // anonymous namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateTestSideEffectAnalysisPass() {
      return std::make_unique<TestSideEffectAnalysisPass>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveExceptionMapper.java

        }
    
        // TODO: We should handle this exception at the source instead of using instanceof to detect it after it is thrown.
        //       We should try to avoid catching and analyzing runtime exceptions
        public Throwable mapRepositoryOverrideFailure(String contextDisplayName, Throwable failure) {
            if (!(failure instanceof ModuleVersionNotFoundException) || !settingsRepositoriesIgnored()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzer.go

    package analysis
    
    import (
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis/scope"
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Analyzer is an interface for analyzing configuration.
    type Analyzer interface {
    	Metadata() Metadata
    	Analyze(c Context)
    }
    
    // CombinedAnalyzer is an interface used to combine and run multiple analyzers into one
    type CombinedAnalyzer interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top