Skip to content

Commit 1725c14

Browse files
committed
[Project] Release 1.2.0
1 parent c26a1d5 commit 1725c14

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

Diff for: .github/workflows/ubuntu.yml

+11
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
env:
2424
build_dir: "build"
2525
config: "Release"
26+
artifact: "cubool-ubuntu-build.tar.xz"
2627

2728
steps:
2829
- uses: actions/checkout@v2
@@ -69,3 +70,13 @@ jobs:
6970
working-directory: ${{ env.build_dir }}/python
7071
run: bash run_tests.sh
7172
shell: bash
73+
74+
- name: Prepare upload binary
75+
shell: bash
76+
run: tar cfz ${{ env.artifact }} ${{ env.build_dir }}
77+
78+
- name: Upload binary
79+
uses: actions/upload-artifact@v2
80+
with:
81+
name: ${{ env.artifact }}
82+
path: ${{ env.artifact }}

Diff for: CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,19 @@
33
All notable changes to this project are documented in this file.
44
Changes format: version name and date, minor notes, new features, fixes, what removed.
55

6-
Release are available at [link](https://github.com/JetBrains-Research/cuBool/releases).
6+
Releases are available at [link](https://github.com/JetBrains-Research/cuBool/releases).
7+
8+
## v1.2.0 - June 11, 2021
9+
10+
### Summary
11+
12+
Python-package update: support backend type and memory type selection within
13+
package by environment variables. Update docs, add performance comparison section.
14+
15+
#### New features
16+
17+
- Backend type config in pycubool
18+
- GPU memory type config in pycubool
719

820
## v1.1.0 - May 8, 2021
921

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![JB Research](https://jb.gg/badges/research-flat-square.svg)](https://research.jetbrains.org/)
66
[![Ubuntu](https://github.com/JetBrains-Research/cuBool/workflows/Ubuntu/badge.svg?branch=master)](https://github.com/JetBrains-Research/cuBool/actions)
77
[![License](https://img.shields.io/badge/license-MIT-orange)](https://github.com/JetBrains-Research/cuBool/blob/master/LICENSE)
8-
[![Package](https://img.shields.io/badge/pypi%20package-1.1.0-%233776ab)](https://pypi.org/project/pycubool/)
8+
[![Package](https://img.shields.io/badge/pypi%20package-1.2.0-%233776ab)](https://pypi.org/project/pycubool/)
99

1010
**cuBool** is a linear Boolean algebra library primitives and operations for
1111
work with sparse matrices written on the NVIDIA CUDA platform. The primary
@@ -50,7 +50,7 @@ prototyping algorithms on a local computer for later running on a powerful serve
5050

5151
### Platforms
5252

53-
- Linux based OS (tested on Ubuntu 20.04)
53+
- Linux-based OS (tested on Ubuntu 20.04)
5454
- Windows (coming soon)
5555
- macOS (coming soon)
5656

Diff for: cubool/sources/cuda/kernels/spgemv.cuh

+1-2
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,8 @@ namespace cubool {
147147
static constexpr size_t max = std::numeric_limits<size_t>::max();
148148

149149
auto M = m.m_rows;
150-
auto N = m.m_cols;
151150

152-
assert(N == v.m_rows);
151+
assert(m.m_cols == v.m_rows);
153152

154153
// Empty result case
155154
if (v.m_vals == 0 || m.m_vals == 0)

Diff for: python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setuptools.setup(
2222
name="pycubool",
23-
version="1.1.0",
23+
version="1.2.0",
2424
author="Egor Orachyov",
2525
author_email="[email protected]",
2626
license="MIT",

0 commit comments

Comments
 (0)