Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite98ff94

Browse files
authored
Merge pull request#284 from LLNL/release/v0.26
Release/v0.26
2 parents9c3e956 +642172b commite98ff94

28 files changed

+481
-139
lines changed

‎.github/workflows/ci-test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ name: CI Test
33
on:[push, pull_request]
44

55
jobs:
6-
bst1-80-0:
6+
bst1-82-0:
77
runs-on:ubuntu-latest
88
env:
99
METALL_LIMIT_MAKE_PARALLELS:8
1010
steps:
11-
-uses:actions/checkout@v2
11+
-uses:actions/checkout@v3
1212
-name:Test
1313
run:|
1414
pushd /dev/shm
15-
wget -q https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz
15+
wget -q https://boostorg.jfrog.io/artifactory/main/release/1.82.0/source/boost_1_82_0.tar.gz
1616
mkdir boost
17-
tar xfboost_1_80_0.tar.gz -C boost --strip-components 1
17+
tar xfboost_1_82_0.tar.gz -C boost --strip-components 1
1818
export BOOST_ROOT=${PWD}/boost
1919
popd
2020
export METALL_TEST_DIR=${GITHUB_JOB}
21-
export CC=gcc-10
22-
export CXX=g++-10
21+
export CC=gcc-12
22+
export CXX=g++-12
2323
cd $GITHUB_WORKSPACE
2424
bash ./scripts/CI/build_and_test.sh
2525
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
METALL_LIMIT_MAKE_PARALLELS:8
3030
steps:
31-
-uses:actions/checkout@v2
31+
-uses:actions/checkout@v3
3232
-name:Test
3333
run:|
3434
pushd /dev/shm
@@ -38,7 +38,7 @@ jobs:
3838
export BOOST_ROOT=${PWD}/boost
3939
popd
4040
export METALL_TEST_DIR=${GITHUB_JOB}
41-
export CC=gcc-10
42-
export CXX=g++-10
41+
export CC=gcc-12
42+
export CXX=g++-12
4343
cd $GITHUB_WORKSPACE
4444
bash ./scripts/CI/build_and_test.sh

‎.gitlab-ci.yml

Lines changed: 51 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ stages:
1616
variables:
1717
GTEST_COLOR:"1"
1818
GIT_DEPTH:0
19-
SPACK_ARCH_INFO:"arch=linux-rhel7-broadwell"
2019

2120

2221
install_boost:
@@ -26,27 +25,8 @@ install_boost:
2625
-shell
2726
script:
2827
-hostname
29-
-pwd
30-
# - spack install boost@1.80.0
31-
# - spack install boost@1.79.0
32-
# - spack install boost@1.78.0
33-
# - spack install boost@1.77.0
34-
# - spack install boost@1.76.0
35-
# - spack install boost@1.75.0
36-
# - spack install boost@1.74.0
37-
# - spack install boost@1.73.0
38-
# - spack install boost@1.72.0
39-
# - spack install boost@1.71.0
40-
# - spack install boost@1.70.0
41-
# - spack install boost@1.69.0
42-
# - spack install boost@1.68.0
43-
# - spack install boost@1.67.0
44-
# - spack install boost@1.66.0
45-
# - spack install boost@1.65.1
46-
# - spack install boost@1.65.0
47-
# - spack install boost@1.64.0
48-
# - spack clean
49-
-spack find
28+
-srun -N1 -ppdebug spack install boost@1.82.0 boost@1.81.0 boost@1.80.0 boost@1.79.0 boost@1.78.0 boost@1.77.0 boost@1.76.0 boost@1.75.0 boost@1.74.0 boost@1.73.0 boost@1.72.0 boost@1.71.0 boost@1.70.0 boost@1.69.0 boost@1.68.0 boost@1.67.0 boost@1.66.0 boost@1.65.1 boost@1.65.0 boost@1.64.0
29+
-spack clean
5030

5131

5232
.build:
@@ -57,114 +37,126 @@ install_boost:
5737
script:
5838
-echo "=== build section ==="
5939
-module load gcc/${GCC_VERSION}
60-
-spack load boost@${BOOST_VERSION}${SPACK_ARCH_INFO}
40+
-spack load boost@${BOOST_VERSION}arch=$(spack arch)
6141
-export METALL_TEST_DIR="/dev/shm/metall_test-${CI_CONCURRENT_ID}-${CI_PIPELINE_IID}"
6242
-srun -N1 -ppdebug bash ./scripts/CI/build_and_test.sh
6343

64-
build_gcc10.2.1_bst1.80.0:
44+
build_gcc12.1.1_bst1.82.0:
6545
extends:.build
6646
variables:
67-
GCC_VERSION:"10.2.1"
47+
GCC_VERSION:"12.1.1"
48+
BOOST_VERSION:"1.82.0"
49+
50+
build_gcc12.1.1_bst1.81.0:
51+
extends:.build
52+
variables:
53+
GCC_VERSION:"12.1.1"
54+
BOOST_VERSION:"1.81.0"
55+
56+
build_gcc12.1.1_bst1.80.0:
57+
extends:.build
58+
variables:
59+
GCC_VERSION:"12.1.1"
6860
BOOST_VERSION:"1.80.0"
6961

70-
build_gcc10.2.1_bst1.79.0:
62+
build_gcc12.1.1_bst1.79.0:
7163
extends:.build
7264
variables:
73-
GCC_VERSION:"10.2.1"
65+
GCC_VERSION:"12.1.1"
7466
BOOST_VERSION:"1.79.0"
7567

76-
build_gcc10.2.1_bst1.78.0:
68+
build_gcc12.1.1_bst1.78.0:
7769
extends:.build
7870
variables:
79-
GCC_VERSION:"10.2.1"
71+
GCC_VERSION:"12.1.1"
8072
BOOST_VERSION:"1.78.0"
8173

82-
build_gcc10.2.1_bst1.77.0:
74+
build_gcc12.1.1_bst1.77.0:
8375
extends:.build
8476
variables:
85-
GCC_VERSION:"10.2.1"
77+
GCC_VERSION:"12.1.1"
8678
BOOST_VERSION:"1.77.0"
8779

88-
build_gcc10.2.1_bst1.76.0:
80+
build_gcc12.1.1_bst1.76.0:
8981
extends:.build
9082
variables:
91-
GCC_VERSION:"10.2.1"
83+
GCC_VERSION:"12.1.1"
9284
BOOST_VERSION:"1.76.0"
9385

94-
build_gcc10.2.1_bst1.75.0:
86+
build_gcc12.1.1_bst1.75.0:
9587
extends:.build
9688
variables:
97-
GCC_VERSION:"10.2.1"
89+
GCC_VERSION:"12.1.1"
9890
BOOST_VERSION:"1.75.0"
9991

100-
build_gcc10.2.1_bst1.74.0:
92+
build_gcc12.1.1_bst1.74.0:
10193
extends:.build
10294
variables:
103-
GCC_VERSION:"10.2.1"
95+
GCC_VERSION:"12.1.1"
10496
BOOST_VERSION:"1.74.0"
10597

106-
build_gcc10.2.1_bst1.73.0:
98+
build_gcc12.1.1_bst1.73.0:
10799
extends:.build
108100
variables:
109-
GCC_VERSION:"10.2.1"
101+
GCC_VERSION:"12.1.1"
110102
BOOST_VERSION:"1.73.0"
111103

112-
build_gcc10.2.1_bst1.72.0:
104+
build_gcc12.1.1_bst1.72.0:
113105
extends:.build
114106
variables:
115-
GCC_VERSION:"10.2.1"
107+
GCC_VERSION:"12.1.1"
116108
BOOST_VERSION:"1.72.0"
117109

118-
build_gcc10.2.1_bst1.71.0:
110+
build_gcc12.1.1_bst1.71.0:
119111
extends:.build
120112
variables:
121-
GCC_VERSION:"10.2.1"
113+
GCC_VERSION:"12.1.1"
122114
BOOST_VERSION:"1.71.0"
123115

124-
build_gcc10.2.1_bst1.70.0:
116+
build_gcc12.1.1_bst1.70.0:
125117
extends:.build
126118
variables:
127-
GCC_VERSION:"10.2.1"
119+
GCC_VERSION:"12.1.1"
128120
BOOST_VERSION:"1.70.0"
129121

130-
build_gcc10.2.1_bst1.69.0:
122+
build_gcc12.1.1_bst1.69.0:
131123
extends:.build
132124
variables:
133-
GCC_VERSION:"10.2.1"
125+
GCC_VERSION:"12.1.1"
134126
BOOST_VERSION:"1.69.0"
135127

136-
build_gcc10.2.1_bst1.68.0:
128+
build_gcc12.1.1_bst1.68.0:
137129
extends:.build
138130
variables:
139-
GCC_VERSION:"10.2.1"
131+
GCC_VERSION:"12.1.1"
140132
BOOST_VERSION:"1.68.0"
141133

142-
build_gcc10.2.1_bst1.67.0:
134+
build_gcc12.1.1_bst1.67.0:
143135
extends:.build
144136
variables:
145-
GCC_VERSION:"10.2.1"
137+
GCC_VERSION:"12.1.1"
146138
BOOST_VERSION:"1.67.0"
147139

148-
build_gcc10.2.1_bst1.66.0:
140+
build_gcc12.1.1_bst1.66.0:
149141
extends:.build
150142
variables:
151-
GCC_VERSION:"10.2.1"
143+
GCC_VERSION:"12.1.1"
152144
BOOST_VERSION:"1.66.0"
153145

154-
build_gcc10.2.1_bst1.65.1:
146+
build_gcc12.1.1_bst1.65.1:
155147
extends:.build
156148
variables:
157-
GCC_VERSION:"10.2.1"
149+
GCC_VERSION:"12.1.1"
158150
BOOST_VERSION:"1.65.1"
159151

160-
build_gcc10.2.1_bst1.65.0:
152+
build_gcc12.1.1_bst1.65.0:
161153
extends:.build
162154
variables:
163-
GCC_VERSION:"10.2.1"
155+
GCC_VERSION:"12.1.1"
164156
BOOST_VERSION:"1.65.0"
165157

166-
build_gcc10.2.1_bst1.64.0:
158+
build_gcc12.1.1_bst1.64.0:
167159
extends:.build
168160
variables:
169-
GCC_VERSION:"10.2.1"
161+
GCC_VERSION:"12.1.1"
170162
BOOST_VERSION:"1.64.0"

‎CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ endif()
1717
# Metall general configuration
1818
# -------------------------------------------------------------------------------- #
1919
project(Metall
20-
VERSION0.25
20+
VERSION0.26
2121
DESCRIPTION"A persistent memory allocator for data-centric analytics"
2222
HOMEPAGE_URL"https://github.com/LLNL/metall")
2323

‎docs/Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Metall"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v0.25
41+
PROJECT_NUMBER = v0.26
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

‎example/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ add_metall_executable(concurrent_map concurrent_map.cpp)
3232

3333
add_metall_executable(metall_containersmetall_containers.cpp)
3434

35+
add_metall_executable(allocator_aware_typeallocator_aware_type.cpp)
36+
37+
add_metall_executable(loggerlogger.cpp)
38+
3539
if (BUILD_C)
3640
add_c_executable(c_apic_api.c)
3741
target_link_libraries(c_apiPRIVATEmetall_c)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp