Skip to content

Commit

Permalink
Added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Umesh-k26 committed Jan 13, 2024
1 parent 7ce476e commit 6b22369
Show file tree
Hide file tree
Showing 13 changed files with 73 additions and 1 deletion.
6 changes: 6 additions & 0 deletions SerDes/bitstreamSerDes.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== MLCompilerBridge/SerDes/bitstreamSerDes.cpp - Bitstream SerDes Implementation ---*- C++ -*-===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#include "SerDes/bitstreamSerDes.h"
#include "MLModelRunner/Utils/JSON.h"
#include "llvm/Support/Error.h"
Expand Down
6 changes: 6 additions & 0 deletions SerDes/jsonSerDes.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== MLCBridge/SerDes/jsonSerDes.cpp - JsonSerDes class definition ===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#include "SerDes/jsonSerDes.h"
#include "MLModelRunner/Utils/JSON.h"
#include "SerDes/baseSerDes.h"
Expand Down
6 changes: 6 additions & 0 deletions SerDes/protobufSerDes.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== MLCompilerBridge/SerDes/protobufSerDes.cpp - Protobuf SerDes Implementation ---*- C++ -*-===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#include "SerDes/protobufSerDes.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/message.h"
Expand Down
6 changes: 6 additions & 0 deletions SerDes/tensorflowSerDes.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== MLCompilerBridge/SerDes/tensorflowSerDes.cpp - Tensorflow SerDes Implementation ---*- C++ -*-===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#include "SerDes/tensorflowSerDes.h"
#include "SerDes/baseSerDes.h"

Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ TIMESTAMP = NO
# normally produced when WARNINGS is set to YES.
# The default value is: NO.

EXTRACT_ALL = NO
EXTRACT_ALL = YES

# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
# be included in the documentation.
Expand Down
6 changes: 6 additions & 0 deletions include/MLModelRunner/C/ONNXModelRunner.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== MLModelRunner/C/ONNXModelRunner.h - C API for ONNXModelRunner - C++ -===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#ifndef ONNX_MODEL_RUNNER_WRAPPER_H
#define ONNX_MODEL_RUNNER_WRAPPER_H

Expand Down
6 changes: 6 additions & 0 deletions include/MLModelRunner/C/PipeModelRunner.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== MLCompilerBridge/include/MLModelRunner/C/PipeModelRunner.h - C API for PipeModelRunner ===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#ifndef PIPE_MODEL_RUNNER_WRAPPER_H
#define PIPE_MODEL_RUNNER_WRAPPER_H

Expand Down
6 changes: 6 additions & 0 deletions include/MLModelRunner/Utils/MLConfig.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== MLModelRunner/Utils/MLConfig.h - MLConfig class definition ---*- C++ -*-===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#ifndef MLBRIDGE_CONFIG_H
#define MLBRIDGE_CONFIG_H
#include "llvm/Support/CommandLine.h"
Expand Down
6 changes: 6 additions & 0 deletions include/SerDes/baseSerDes.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//===- SerDes/baseSerDes.h - Base class for serialization and deserialization ---*- C++ -*-===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#ifndef BASE_SERDES_H
#define BASE_SERDES_H

Expand Down
6 changes: 6 additions & 0 deletions include/SerDes/bitstreamSerDes.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== SerDes/bitstreamSerDes.h - Bitstream Serialization/Deserialization ---*- C++ -*-===//
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#ifndef BITSTREAM_SERIALIZER_H
#define BITSTREAM_SERIALIZER_H

Expand Down
6 changes: 6 additions & 0 deletions include/SerDes/jsonSerDes.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== SerDes/jsonSerDes.h - Json Serialization/Deserialization ---*- C++
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#ifndef JSON_SERIALIZER_H
#define JSON_SERIALIZER_H

Expand Down
6 changes: 6 additions & 0 deletions include/SerDes/protobufSerDes.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== SerDes/protobufSerDes.h - Protobuf Serialization/Deserialization ---*- C++
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#ifndef PROTOBUF_SERIALIZER_H
#define PROTOBUF_SERIALIZER_H

Expand Down
6 changes: 6 additions & 0 deletions include/SerDes/tensorflowSerDes.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//=== SerDes/tensorflowSerDes.h - Tensorflow Serialization/Deserialization ---*- C++
//
// Part of the MLCompilerBridge Project
//
//===------------------===//

#ifndef TENSORFLOW_SERIALIZER_H
#define TENSORFLOW_SERIALIZER_H

Expand Down

0 comments on commit 6b22369

Please sign in to comment.