Skip to content

Commit

Permalink
[Project] Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorOrachyov committed Jun 11, 2021
1 parent c26a1d5 commit 1725c14
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 6 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
env:
build_dir: "build"
config: "Release"
artifact: "cubool-ubuntu-build.tar.xz"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -69,3 +70,13 @@ jobs:
working-directory: ${{ env.build_dir }}/python
run: bash run_tests.sh
shell: bash

- name: Prepare upload binary
shell: bash
run: tar cfz ${{ env.artifact }} ${{ env.build_dir }}

- name: Upload binary
uses: actions/upload-artifact@v2
with:
name: ${{ env.artifact }}
path: ${{ env.artifact }}
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
All notable changes to this project are documented in this file.
Changes format: version name and date, minor notes, new features, fixes, what removed.

Release are available at [link](https://github.com/JetBrains-Research/cuBool/releases).
Releases are available at [link](https://github.com/JetBrains-Research/cuBool/releases).

## v1.2.0 - June 11, 2021

### Summary

Python-package update: support backend type and memory type selection within
package by environment variables. Update docs, add performance comparison section.

#### New features

- Backend type config in pycubool
- GPU memory type config in pycubool

## v1.1.0 - May 8, 2021

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![JB Research](https://jb.gg/badges/research-flat-square.svg)](https://research.jetbrains.org/)
[![Ubuntu](https://github.com/JetBrains-Research/cuBool/workflows/Ubuntu/badge.svg?branch=master)](https://github.com/JetBrains-Research/cuBool/actions)
[![License](https://img.shields.io/badge/license-MIT-orange)](https://github.com/JetBrains-Research/cuBool/blob/master/LICENSE)
[![Package](https://img.shields.io/badge/pypi%20package-1.1.0-%233776ab)](https://pypi.org/project/pycubool/)
[![Package](https://img.shields.io/badge/pypi%20package-1.2.0-%233776ab)](https://pypi.org/project/pycubool/)

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

### Platforms

- Linux based OS (tested on Ubuntu 20.04)
- Linux-based OS (tested on Ubuntu 20.04)
- Windows (coming soon)
- macOS (coming soon)

Expand Down
3 changes: 1 addition & 2 deletions cubool/sources/cuda/kernels/spgemv.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,8 @@ namespace cubool {
static constexpr size_t max = std::numeric_limits<size_t>::max();

auto M = m.m_rows;
auto N = m.m_cols;

assert(N == v.m_rows);
assert(m.m_cols == v.m_rows);

// Empty result case
if (v.m_vals == 0 || m.m_vals == 0)
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setuptools.setup(
name="pycubool",
version="1.1.0",
version="1.2.0",
author="Egor Orachyov",
author_email="[email protected]",
license="MIT",
Expand Down

0 comments on commit 1725c14

Please sign in to comment.