Skip to content

Commit 0cd665b

Browse files
committed
Please consider the following formatting changes
1 parent 7de6492 commit 0cd665b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Common/ML/include/ML/OrtInterface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class OrtModel
119119
std::vector<const char*> mInputNamesChar, mOutputNamesChar;
120120
std::vector<std::string> mInputNames, mOutputNames;
121121
std::vector<std::vector<int64_t>> mInputShapes, mOutputShapes, mInputShapesCopy, mOutputShapesCopy; // Input shapes
122-
std::vector<int64_t> mInputSizePerNode, mOutputSizePerNode; // Output shapes
122+
std::vector<int64_t> mInputSizePerNode, mOutputSizePerNode; // Output shapes
123123
int32_t mInputsTotal = 0, mOutputsTotal = 0; // Total number of inputs and outputs
124124

125125
// Environment settings

GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizerHost.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ class GPUTPCNNClusterizerHost
5858
const OrtMemoryInfo* getMockedMemoryInfo();
5959

6060
std::unordered_map<std::string, std::string> mOrtOptions;
61-
o2::ml::OrtModel mModelClass, mModelReg1, mModelReg2; // For splitting clusters
62-
std::vector<bool> mModelsUsed = {false, false, false}; // 0: class, 1: reg_1, 2: reg_2
61+
o2::ml::OrtModel mModelClass, mModelReg1, mModelReg2; // For splitting clusters
62+
std::vector<bool> mModelsUsed = {false, false, false}; // 0: class, 1: reg_1, 2: reg_2
6363
int32_t mDeviceId = -1;
6464
std::shared_ptr<MockedOrtAllocator> mMockedAlloc = nullptr;
6565
}; // class GPUTPCNNClusterizerHost

0 commit comments

Comments
 (0)