Skip to content

Commit

Permalink
Bump up vineyard version to v0.14.8
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed May 30, 2023
1 parent a2cdee5 commit c20acf8
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion 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 14)
set(VINEYARD_PATCH_VERSION 7)
set(VINEYARD_PATCH_VERSION 8)
set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION})

message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.")
Expand Down
4 changes: 2 additions & 2 deletions charts/vineyard-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.14.7
version: 0.14.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.14.7
appVersion: 0.14.8

dependencies:
- name: cert-manager
Expand Down
2 changes: 1 addition & 1 deletion k8s/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var cmdLong = util.LongDesc(`

var cmd = &cobra.Command{
Use: "vineyardctl [command]",
Version: "v0.14.7",
Version: "v0.14.8",
Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.",
Long: cmdLong,
}
Expand Down
1 change: 0 additions & 1 deletion modules/graph/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ target_add_debuginfo(vineyard_graph)
target_compile_options(vineyard_graph PUBLIC "-fopenmp")
target_link_options(vineyard_graph PUBLIC "-fopenmp")
target_include_directories(vineyard_graph PUBLIC ${MPI_CXX_INCLUDE_PATH})
target_compile_options(vineyard_graph PUBLIC "-DVARINT_ENCODING_BATCH_SIZE=16") # for varint batching

find_package(Boost COMPONENTS leaf)
if(Boost_LEAF_FOUND)
Expand Down
5 changes: 5 additions & 0 deletions modules/graph/fragment/property_graph_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ limitations under the License.
#include "basic/ds/arrow.h"
#include "common/util/arrow.h"

// batching varint decoding for edge list
#ifndef VARINT_ENCODING_BATCH_SIZE
#define VARINT_ENCODING_BATCH_SIZE 16
#endif

namespace vineyard {

using fid_t = grape::fid_t;
Expand Down
2 changes: 1 addition & 1 deletion modules/graph/thirdparty/libgrape-lite
Submodule libgrape-lite updated 52 files
+2 −0 .clang-format
+3 −2 CMakeLists.txt
+2 −2 examples/analytical_apps/bfs/bfs_auto.h
+2 −2 examples/analytical_apps/bfs/bfs_auto_context.h
+2 −2 examples/analytical_apps/bfs/bfs_context.h
+2 −2 examples/analytical_apps/cdlp/cdlp_context.h
+2 −2 examples/analytical_apps/cdlp/cdlp_utils.h
+2 −2 examples/analytical_apps/flags.cc
+2 −2 examples/analytical_apps/lcc/lcc.h
+2 −2 examples/analytical_apps/lcc/lcc_auto_context.h
+2 −2 examples/analytical_apps/lcc/lcc_context.h
+2 −2 examples/analytical_apps/pagerank/pagerank_auto_context.h
+2 −2 examples/analytical_apps/pagerank/pagerank_context.h
+2 −2 examples/analytical_apps/pagerank/pagerank_local_context.h
+2 −2 examples/analytical_apps/pagerank/pagerank_local_parallel_context.h
+2 −2 examples/analytical_apps/pagerank/pagerank_parallel_context.h
+11 −10 examples/analytical_apps/run_app.h
+3 −1 examples/analytical_apps/run_cuda_app.cu
+7 −5 examples/analytical_apps/run_cuda_app.h
+2 −2 examples/analytical_apps/sssp/sssp_auto.h
+2 −2 examples/analytical_apps/sssp/sssp_auto_context.h
+2 −2 examples/analytical_apps/sssp/sssp_context.h
+2 −2 examples/analytical_apps/wcc/wcc_auto.h
+2 −2 examples/analytical_apps/wcc/wcc_auto_context.h
+10 −10 examples/gnn_sampler/append_only_edgecut_fragment.h
+5 −5 examples/gnn_sampler/fragment_indices.h
+3 −3 examples/gnn_sampler/kafka_consumer.h
+3 −3 examples/gnn_sampler/kafka_producer.h
+7 −5 examples/gnn_sampler/run_sampler.cc
+3 −3 examples/gnn_sampler/sampler.h
+4 −4 examples/gnn_sampler/sampler_context.h
+1 −1 grape/fragment/csr_edgecut_fragment_base.h
+1 −2 grape/fragment/fragment_base.h
+4 −3 grape/fragment/immutable_edgecut_fragment.h
+1 −1 grape/fragment/mutable_edgecut_fragment.h
+2 −1 grape/fragment/rebalancer.h
+1 −0 grape/graph/de_mutable_csr.h
+2 −2 grape/graph/immutable_csr.h
+2 −1 grape/io/local_io_adaptor.cc
+1 −1 grape/parallel/auto_parallel_message_manager.h
+2 −1 grape/util.h
+2 −1 grape/utils/hp_allocator.h
+2 −2 grape/utils/thread_pool.h
+2 −2 grape/vertex_map/local_vertex_map.h
+2 −2 grape/vertex_map/vertex_map_base.h
+1 −1 grape/worker/worker.h
+1 −1 libgrapelite-config-version.in.cmake
+6 −0 libgrapelite-config.in.cmake
+3 −3 misc/app_tests.sh
+3 −3 tests/mutable_fragment_tests.cc
+4 −4 tests/mutate_tests.cc
+2 −7 tests/vertex_map_tests.cc
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.14.7
version = 0.14.8

[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 14
#define VINEYARD_VERSION_PATCH 7
#define VINEYARD_VERSION_PATCH 8

#define VINEYARD_VERSION \
((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \
VINEYARD_VERSION_PATCH
#define VINEYARD_VERSION_STRING "0.14.7"
#define VINEYARD_VERSION_STRING "0.14.8"

#endif // SRC_COMMON_UTIL_CONFIG_H_

0 comments on commit c20acf8

Please sign in to comment.