Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ include(FetchContent)
FetchContent_Declare(
qoco
GIT_REPOSITORY https://github.com/qoco-org/qoco.git
GIT_TAG 773bfe4854eb53fe05756ede59ef07258b9e1e6a
GIT_TAG 598de4e1aeaa9c522b3bc5bb1a56f3d7287dc14f
)

list(POP_BACK CMAKE_MESSAGE_INDENT)
Expand Down
2 changes: 1 addition & 1 deletion backend/cuda/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "qoco-cuda"
version = "0.2.1"
version = "0.2.2"
description = "QOCO: Quadratic Objective Conic Optimizer"
requires-python = ">=3.8"
authors = [{ name = "Govind M. Chari", email = "govindchari1@gmail.com" }]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "qoco"
version = "0.3.1"
version = "0.3.2"
description = "QOCO: Quadratic Objective Conic Optimizer"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 2 additions & 0 deletions src/bindings.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ PYBIND11_MODULE(@QOCO_EXT_MODULE_NAME@, m)
{ return sol._solution.setup_time_sec; })
.def_property_readonly("solve_time_sec", [](const PyQOCOSolution &sol)
{ return sol._solution.solve_time_sec; })
.def_property_readonly("analysis_time_sec", [](const PyQOCOSolution &sol)
{ return sol._solution.analysis_time_sec; })
.def_property_readonly("obj", [](const PyQOCOSolution &sol)
{ return sol._solution.obj; })
.def_property_readonly("pres", [](const PyQOCOSolution &sol)
Expand Down
1 change: 1 addition & 0 deletions src/qoco/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ def solve(self):
ir_iters=self._solver.solution.ir_iters,
setup_time_sec=self._solver.solution.setup_time_sec,
solve_time_sec=self._solver.solution.solve_time_sec,
analysis_time_sec=self._solver.solution.analysis_time_sec,
obj=self._solver.solution.obj,
pres=self._solver.solution.pres,
dres=self._solver.solution.dres,
Expand Down
Loading