Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for bagel (0.06 sec)

  1. .gitignore

    /test/e2e/generated/bindata.go
    
    # This file used by some vendor repos (e.g. github.com/go-openapi/...) to store secret variables and should not be ignored
    !\.drone\.sec
    
    /bazel-*
    *.pyc
    
    # generated by verify-vendor.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/test.cc

    //    TFCOMPILE_HEADER    : Path to the header file generated by tfcompile.
    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //    TFCOMPILE_NAME      : Name for tests and benchmarks.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_test rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/c/experimental/saved_model/core/ops/restore_ops_test.cc

      EagerContext* context() { return ctx_.get(); }
    
     private:
      std::unique_ptr<StaticDeviceMgr> device_mgr_;
      EagerContextPtr ctx_;
    };
    
    // One way of obtaining the checkpointa checkpoint's tensor names is:
    // bazel run //tensorflow/python/tools:inspect_checkpoint -- --all_tensors
    // --file_name="$CKPT_PREFIX".
    // Here are the values for VarsAndArithmeticObjectGraph:
    // tensor: child/z/.ATTRIBUTES/VARIABLE_VALUE (float32) []
    // 3.0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/glob_lit_test.bzl

    # test input data files.
    _ALWAYS_EXCLUDE = [
        "**/LICENSE.txt",
        "**/README.txt",
        "**/lit.local.cfg",
        # Exclude input files that have spaces in their names, since bazel
        # cannot cope with such "targets" in the srcs list.
        "**/* *",
        "**/* */**",
    ]
    
    def _run_lit_test(name, data, size, tags, driver, features, exec_properties):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top