Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UnknownError (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.cc

      if (!module.ok()) {
        return absl::UnknownError(
            absl::StrCat("Failed to convert SavedModel to StableHLO: ",
                         module.status().message()));
      }
    
      auto bytecode = ModuleToBytecode(module.value().get());
      if (!bytecode.ok()) {
        return absl::UnknownError(
            absl::StrCat("Failed to serialize MLIR module to bytecode: ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestListenerIntegrationTest.groovy

            containsLine(result.getOutput(), "START [Test ${maybeParentheses('unknownError')}(SomeTest)] [${maybeParentheses('unknownError')}]")
            containsLine(result.getOutput(), "FINISH [Test ${maybeParentheses('unknownError')}(SomeTest)] [${maybeParentheses('unknownError')}] [FAILURE] [1] [AppException]")
    
            when:
            testDirectory.file('src/test/java/SomeOtherTest.java').delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.cc

        } else {
          options.toco_flags.set_enable_select_tf_ops(false);
        }
        if (!tflite::MlirToFlatBufferTranslateFunction(module, options, &result)) {
          return absl::UnknownError("Failed to export tflite file.");
        }
      }
    
      output->os() << result;
      output->keep();
      return absl::OkStatus();
    }
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top