Skip to content

Commit aa631f6

Browse files
authored
v0.3.2 (#11)
1 parent 2e7a539 commit aa631f6

5 files changed

Lines changed: 6 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ include(FetchContent)
2323
FetchContent_Declare(
2424
qoco
2525
GIT_REPOSITORY https://github.com/qoco-org/qoco.git
26-
GIT_TAG 773bfe4854eb53fe05756ede59ef07258b9e1e6a
26+
GIT_TAG 598de4e1aeaa9c522b3bc5bb1a56f3d7287dc14f
2727
)
2828

2929
list(POP_BACK CMAKE_MESSAGE_INDENT)

backend/cuda/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "qoco-cuda"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "QOCO: Quadratic Objective Conic Optimizer"
99
requires-python = ">=3.8"
1010
authors = [{ name = "Govind M. Chari", email = "govindchari1@gmail.com" }]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "qoco"
7-
version = "0.3.1"
7+
version = "0.3.2"
88
description = "QOCO: Quadratic Objective Conic Optimizer"
99
readme = "README.md"
1010
requires-python = ">=3.8"

src/bindings.cpp.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,8 @@ PYBIND11_MODULE(@QOCO_EXT_MODULE_NAME@, m)
368368
{ return sol._solution.setup_time_sec; })
369369
.def_property_readonly("solve_time_sec", [](const PyQOCOSolution &sol)
370370
{ return sol._solution.solve_time_sec; })
371+
.def_property_readonly("analysis_time_sec", [](const PyQOCOSolution &sol)
372+
{ return sol._solution.analysis_time_sec; })
371373
.def_property_readonly("obj", [](const PyQOCOSolution &sol)
372374
{ return sol._solution.obj; })
373375
.def_property_readonly("pres", [](const PyQOCOSolution &sol)

src/qoco/interface.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ def solve(self):
270270
ir_iters=self._solver.solution.ir_iters,
271271
setup_time_sec=self._solver.solution.setup_time_sec,
272272
solve_time_sec=self._solver.solution.solve_time_sec,
273+
analysis_time_sec=self._solver.solution.analysis_time_sec,
273274
obj=self._solver.solution.obj,
274275
pres=self._solver.solution.pres,
275276
dres=self._solver.solution.dres,

0 commit comments

Comments
 (0)