Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 140 for no_oss (0.13 sec)

  1. tensorflow/cc/saved_model/reader.cc

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saved_model.pb.h"
    #include "tensorflow/core/util/tensor_bundle/byte_swap_tensor.h"
    // Placeholder for protosplitter merger include.
    
    #define IS_OSS true
    
    namespace tensorflow {
    
    absl::StatusOr<MetaGraphDef*> FindMetaGraphDef(
        const std::unordered_set<string>& tags, SavedModel* saved_model_proto) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 00:19:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tensorflow/cc/BUILD

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/BUILD

    load("//tensorflow:tensorflow.bzl", "if_oss")
    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 903 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/BUILD

    load("//tensorflow:tensorflow.bzl", "if_oss")
    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        # Custom driver is unsupported in OSS. Fails if one is provided.
        # copybara:uncomment driver = "//tensorflow/compiler/mlir:run_lit.sh",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/BUILD

            [],
        ),
        values = if_oss(
            {"crosstool_top": "//external:android/crosstool"},
            {},
        ),
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "android_x86",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:android"],
            [],
        ),
        values = dict(
            if_oss(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/ir/BUILD

    load("//tensorflow:tensorflow.bzl", "if_oss", "tf_cc_test")
    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        exclude = ["testdata/**"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/DefaultProblemDiagnosticsFactory.java

                } else {
                    return locationFromStackTrace(exception, true, true, NO_OP);
                }
            }
    
            @Override
            public ProblemDiagnostics forCurrentCaller() {
                return locationFromStackTrace(getImplicitThrowable(EXCEPTION_FACTORY), false, false, NO_OP);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/analysis/BUILD

    load("//tensorflow:tensorflow.bzl", "if_oss", "tf_cc_test")
    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        exclude = ["testdata/**"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/image_format/internal_api.h

    #include <string>
    #include <tuple>
    
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/cord.h"
    #include "tensorflow/core/protobuf/saved_model.pb.h"
    
    #define IS_OSS false
    
    namespace tensorflow {
    namespace image_format {
    
    // Reads the SavedModel proto from {file_prefix}{.pb|.cpb}.
    // Returns a failure status when the SavedModel file does not exist.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/universe.go

    		recv := NewVar(nopos, nil, "", typ)
    		res := NewVar(nopos, nil, "", Typ[String])
    		sig := NewSignatureType(recv, nil, nil, nil, NewTuple(res), false)
    		err := NewFunc(nopos, nil, "Error", sig)
    
    		// interface{ Error() string }
    		ityp := &Interface{methods: []*Func{err}, complete: true}
    		computeInterfaceTypeSet(nil, nopos, ityp) // prevent races due to lazy computation of tset
    
    		typ.SetUnderlying(ityp)
    		def(obj)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top