Skip to content

Commit

Permalink
Upgrade vineyard to v0.5.3.
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed Jun 21, 2022
1 parent e45c987 commit 342ba0c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
8 changes: 3 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.3)

set(VINEYARD_MAJOR_VERSION 0)
set(VINEYARD_MINOR_VERSION 5)
set(VINEYARD_PATCH_VERSION 2)
set(VINEYARD_PATCH_VERSION 3)
set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION})

message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.")
Expand Down Expand Up @@ -239,7 +239,9 @@ macro(find_boost)
endmacro(find_boost)

macro(find_ctti)
set(MESSAGE_QUIET ON)
add_subdirectory_static(thirdparty/ctti)
unset(MESSAGE_QUIET)
endmacro(find_ctti)

macro(find_etcd_cpp_apiv3)
Expand Down Expand Up @@ -345,10 +347,6 @@ endmacro(find_libunwind)
macro(find_nlohmann_json)
# include nlohmann/json
set(JSON_BuildTests OFF CACHE INTERNAL "")
set(JSON_HAS_CPP_11 ON CACHE INTERNAL "With C++ 11")
set(JSON_HAS_CPP_14 ON CACHE INTERNAL "Without C++ 14")
set(JSON_HAS_CPP_17 ON CACHE INTERNAL "Without C++ 17")
set(JSON_HAS_CPP_20 ON CACHE INTERNAL "Without C++ 20")
if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND USE_JSON_DIAGNOSTICS)
set(JSON_Diagnostics ON CACHE INTERNAL "")
else()
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ different systems via shared memory without extra overheads. Vineyard eliminates
the overhead of serialization/deserialization and IO during exchanging immutable
data between systems.

Out-of-box high level data abstraction
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Out-of-the-box high level data abstraction
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Computation frameworks usually have their own data abstractions for high-level concepts,
for example tensor could be `torch.tensor`, `tf.Tensor`, `mxnet.ndarray` etc., not to
Expand Down
1 change: 1 addition & 0 deletions docs/notes/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ Creating a dataframe
.. code:: python
>>> import numpy as np
>>> import pandas as pd
>>> import vineyard.data.dataframe
>>> df = pd.DataFrame({'u': [0, 0, 1, 2, 2, 3],
>>> 'v': [1, 2, 3, 3, 4, 4],
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = 0.5.2
version = 0.5.3

[pycodestyle]
max_line_length = 88
Expand Down
4 changes: 2 additions & 2 deletions src/common/util/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ limitations under the License.

#define VINEYARD_VERSION_MAJOR 0
#define VINEYARD_VERSION_MINOR 5
#define VINEYARD_VERSION_PATCH 2
#define VINEYARD_VERSION_PATCH 3

#define VINEYARD_VERSION \
((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \
VINEYARD_VERSION_PATCH
#define VINEYARD_VERSION_STRING "0.5.2"
#define VINEYARD_VERSION_STRING "0.5.3"

#endif // SRC_COMMON_UTIL_CONFIG_H_

0 comments on commit 342ba0c

Please sign in to comment.