Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 97 of 97 for notFound (0.16 sec)

  1. tensorflow/cc/saved_model/image_format/internal_api.cc

        metrics::SavedModelReadCount(
            saved_model::GetWriteVersion(*saved_model_proto))
            .IncrementBy(1);
      }
      return result;
    #endif
    
      return absl::Status(
          absl::StatusCode::kNotFound,
          absl::StrCat("Could not find SavedModel .pb or .pbtxt at supplied "
                       "file prefix: ",
                       file_prefix,
                       ". Check that "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/metrics_test.cc

      EXPECT_EQ(SavedModelFoundFingerprintOnLoad().value(), "FOUND");
      SavedModelFoundFingerprintOnLoad().Set(kFingerprintNotFound);
      EXPECT_EQ(SavedModelFoundFingerprintOnLoad().value(), "NOT_FOUND");
      SavedModelFoundFingerprintOnLoad().Set(kFingerprintError);
      EXPECT_EQ(SavedModelFoundFingerprintOnLoad().value(), "ERROR");
    }
    
    TEST(MetricsTest, TestShardingCallbackDuration) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops_test.cc

        mlir_module_ =
            mlir::parseSourceFile<mlir::ModuleOp>(mlir_module_path, &context_);
        if (!mlir_module_) {
          return absl::Status(
              absl::StatusCode::kNotFound,
              absl::StrCat("Could not find MLIR module at ", mlir_module_path));
        }
        return absl::OkStatus();
      }
    
      DialectRegistry registry_;
      MLIRContext context_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util_test.cc

    }
    
    TEST(TensorPjRtBufferUtilTest, GetPjRtCApiClientNotFound) {
      EXPECT_THAT(
          GetPjRtCApiClient(tensorflow::DeviceType(DEVICE_CPU)),
          StatusIs(error::NOT_FOUND,
                   HasSubstr(absl::StrCat("PjRt client not found for device type ",
                                          DEVICE_CPU))));
    }
    
    TEST(TensorPjRtBufferUtilTest, GetPjRtCApiClientIncorrectType) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 16:29:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

      // The report file is not created because `QuantizeCompositeFunctionsPass` was
      // not run.
      EXPECT_THAT(ReadFileToString(report_file_path),
                  StatusIs(absl::StatusCode::kNotFound));
    }
    
    TEST_F(SaveQuantizationReportInstrumentationTest,
           ReportNotSavedWhenReportFilePathIsNullopt) {
      constexpr absl::string_view kModuleWithCompositeDotGeneral = R"mlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

          t.scalar<tensorflow::ResourceHandle>()().set_device("invalid_device");
    
          outputs->push_back(t);
        } else if (absl::StartsWith(output_name, "var")) {
          return Status(absl::StatusCode::kNotFound,
                        "Can't find variable " + output_name + " in session");
        } else {
          // Create a scalar float tensor.
          Tensor t = Tensor(tensorflow::DT_FLOAT, tensorflow::TensorShape({}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/metrics.h

    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    
    namespace tensorflow {
    namespace metrics {
    
    const char kFingerprintFound[] = "FOUND";
    const char kFingerprintNotFound[] = "NOT_FOUND";
    const char kFingerprintError[] = "ERROR";
    
    // Returns "/tensorflow/core/saved_model/write/count" cell. This metric
    // has 1 field "write_version", which is equal to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top