Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HloTextToMlirHloTranslateFunction (0.26 sec)

  1. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.cc

      if (!status.ok()) {
        LOG(ERROR) << "Hlo module import failed: " << status;
        return nullptr;
      }
    
      return module;
    }
    
    mlir::OwningOpRef<mlir::ModuleOp> HloTextToMlirHloTranslateFunction(
        llvm::StringRef input, mlir::MLIRContext* context,
        bool import_all_computations) {
      xla::HloProto hlo_proto;
      std::string content(input.data(), input.size());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

                       << error;
          return kTrFailure;
        }
    
        auto content = buffer->getBuffer();
        if (hlo_import_type == HloImportType::hlotxt) {
          module = xla::HloTextToMlirHloTranslateFunction(content, &context, false);
        } else if (hlo_import_type == HloImportType::proto) {
          module = xla::HloToMlirHloTranslateFunction(content, &context, false);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top