Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d4dc46e
Copying kernels to implement NN clusterizer
ChSonnabend May 16, 2024
c191885
Merge branch 'dev' into gpu_clusterizer
ChSonnabend May 24, 2024
05831ef
First version of clusterizer in GPU code
ChSonnabend May 27, 2024
8515290
Merge branch 'gpu_clusterizer' of github.com:ChSonnabend/AliceO2 into…
ChSonnabend May 27, 2024
3f6c934
Adding a compiling and running version with single-threaded ONNX mode…
ChSonnabend May 29, 2024
8ba6805
Clusters now working by a hack
ChSonnabend May 29, 2024
6ec3c46
Working implementation of settings via GPUSettings.h and --configKeyV…
ChSonnabend Jun 6, 2024
626a46f
Merge branch 'AliceO2Group:dev' into gpu_clusterizer
ChSonnabend Jun 24, 2024
ab4653a
Modifying the onnx_interface to include the right headers
ChSonnabend Jun 24, 2024
04084c8
Adjusting initialization for new ONNXRuntime version
ChSonnabend Jun 24, 2024
01dc4a1
Adjusting global settings and CF code for several settings
ChSonnabend Jun 26, 2024
accd7ab
Adding return statement if cluster is rejected
ChSonnabend Jul 3, 2024
019b388
Merge branch 'AliceO2Group:dev' into gpu_clusterizer
ChSonnabend Jul 3, 2024
3473a06
Adding some statements back
ChSonnabend Jul 4, 2024
dfffdf5
Merge branch 'dev' into gpu_clusterizer
ChSonnabend Oct 16, 2024
df21c96
Update to latest status of gpu clusterization
ChSonnabend Oct 17, 2024
06737fd
Fixing uchar -> uint8_t
ChSonnabend Oct 18, 2024
b148449
Adding utils header
ChSonnabend Oct 18, 2024
534da50
Updating kernels.cmake to uint8_t
ChSonnabend Oct 21, 2024
bb2cb6e
Please consider the following formatting changes
alibuild Oct 21, 2024
027e225
Merge pull request #6 from alibuild/alibot-cleanup-13610
ChSonnabend Nov 4, 2024
25093b3
Adding an ONNX CPU library in the O2 framework
ChSonnabend Nov 18, 2024
74cf0e7
Merge branch 'AliceO2Group:dev' into onnxruntime-cpu
ChSonnabend Nov 18, 2024
9232328
Please consider the following formatting changes
alibuild Nov 18, 2024
9a6a9e8
Merge pull request #7 from alibuild/alibot-cleanup-13709
ChSonnabend Nov 18, 2024
7251c5c
Fixing macOS build issues with calling O*.data()
ChSonnabend Nov 19, 2024
d0f4dd8
Fixing compiler issues and char -> uint8_t
ChSonnabend Nov 19, 2024
7859ab2
Fixing curly braces
ChSonnabend Nov 19, 2024
c6cb3e6
Fixing std::make_shared
ChSonnabend Nov 19, 2024
55621f0
Merge branch 'onnxruntime-cpu' into gpu_clusterizer
ChSonnabend Nov 20, 2024
a00a54b
Merge branch 'dev' into gpu_clusterizer
ChSonnabend Nov 20, 2024
40bc437
Changing order for <CommonUtils/StringUtils.h>
ChSonnabend Nov 20, 2024
f0a8cc2
Merge branch 'dev' into gpu_clusterizer
ChSonnabend Nov 22, 2024
d3aede4
Merge branch 'dev' into gpu_clusterizer
ChSonnabend Dec 17, 2024
52b033f
Bug-fixing file name
ChSonnabend Dec 17, 2024
314a0ce
Merge branch 'dev' into gpu_clusterizer
ChSonnabend Jan 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing std::make_shared
  • Loading branch information
ChSonnabend committed Nov 19, 2024
commit c6cb3e6f2992f9328185c360c1590a412f401575
2 changes: 1 addition & 1 deletion Common/ML/src/ort_interface.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void OrtModel::reset(std::unordered_map<std::string, std::string> optionsMap)

void OrtModel::resetSession()
{
(pImplOrt->session).reset(std::make_shared<Ort::Session>(*(pImplOrt->env), modelPath.c_str(), pImplOrt->sessionOptions));
pImplOrt->session = std::make_shared<Ort::Session>(*(pImplOrt->env), modelPath.c_str(), pImplOrt->sessionOptions);
}

template <class I, class O>
Expand Down