Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for bagel (0.05 sec)

  1. tensorflow/compiler/mlir/runlit.site.cfg.py

    # limitations under the License.
    """Lit runner site configuration."""
    
    import os
    import platform
    import lit.llvm
    
    # Handle the test srcdir for platforms. On windows, things are weird with bazel.
    if platform.system() == 'Windows':
      srcdir = os.environ['TEST_SRCDIR']
      real_test_srcdir = srcdir[:srcdir.find('tensorflow/compiler/mlir')]
      external_srcdir = os.path.join(real_test_srcdir, 'external')
    else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_util.h

    namespace tensorflow {
    namespace cc_op {
    
    absl::StatusOr<ApiDefMap> LoadOpsAndApiDefs(
        OpList& ops, bool include_internal,
        const std::vector<string>& api_def_dirs);
    
    // Converts:
    //   bazel-out/.../(bin|genfiles)/(external/YYY/)?XX
    // to: XX.
    string GetPath(StringPiece dot_h_fname);
    
    // Converts: some/path/to/file.xx
    // to: file
    // (note that suffix is removed)
    string GetFilename(StringPiece path);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGenerator.groovy

            file projectDir, "gradle.properties", fileContentGenerator.generateGradleProperties(isRoot)
            file projectDir, "pom.xml", fileContentGenerator.generatePomXML(subProjectNumber, dependencyTree)
            file projectDir, "BUILD.bazel", bazelContentGenerator.generateBuildFile(subProjectNumber, dependencyTree)
            if (isRoot) {
                file projectDir, "WORKSPACE", bazelContentGenerator.generateWorkspace()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

    # limitations under the License.
    
    # Skylark rule to generate a Junit4 TestSuite
    # Assumes srcs are all .java Test files
    # Assumes junit4 is already added to deps by the user.
    
    # See https://github.com/bazelbuild/bazel/issues/1017 for background.
    
    load("@rules_java//java:defs.bzl", "java_test")
    
    _OUTPUT = """ import org.junit.runners.Suite;
            import org.junit.runner.RunWith;
            @RunWith(Suite.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                      apply-non-abi-change-to = "${fileToChange}"
                      maven {
                        targets = ["clean", "package", "-Dmaven.test.skip=true", "-T", "4"]
                      }
                      bazel {
                        targets = ["build", "//..."]
                      }
                    }
    
                    abiChange {
                      tasks = ["assemble"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/BUILD

            "@com_google_protobuf//:protobuf_headers",
            "@flatbuffers//:runtime_cc",
            "@local_tsl//tsl/platform:status",
        ] + select({
            # This is required when running `tflite_convert` from `bazel`.
            # It requires to link with TensorFlow Ops to get the op definitions.
            ":tflite_convert_with_select_tf_ops": [
                "//tensorflow/core:ops",
            ],
            "//conditions:default": [],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:23:49 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/BUILD

        mlir_components = "Bridge",
        tags = [
            "manual",
        ],
    )
    
    # Utility library for benchmark binaries, used by the *_benchmark rules that are
    # added by the tfcompile bazel macro.
    cc_library(
        name = "benchmark",
        srcs = ["benchmark.cc"],
        hdrs = ["benchmark.h"],
        visibility = ["//visibility:public"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tfcompile.bzl

            Unlike the output of gen_test, this benchmark can be run on android.
          gen_compiler_log: If True, dumps XLA:CPU debug output to a log file.
          visibility: Bazel build visibility.
          testonly:   Bazel testonly attribute.
          tfcompile_flags: Extra flags to pass to tfcompile to control compilation.
          tfcompile_tool: The tfcompile binary. A non-default can be passed to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

        graphdef = std::move(next);
      }
    
      TF_ASSIGN_OR_RETURN(string clustering_summary, SummarizeClustering(graphdef));
    
      // To update golden files flip this to true and run
      //
      // bazel test --test_strategy=local \
      //   tensorflow/compiler/jit/tests:auto_clustering_test
      bool update_golden = false;
      if (update_golden) {
        TF_RETURN_IF_ERROR(WriteStringToFile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    can be easily selected, incorporated, and reused in a wide range of
    driver programs including command-line tools (such as vet), text editors and
    IDEs, build and test systems (such as go build, Bazel, or Buck), test
    frameworks, code review tools, code-base indexers (such as SourceGraph),
    documentation viewers (such as godoc), batch pipelines for large code
    bases, and so on.
    
    # Analyzer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top