Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[type] Refine SNode with quant 10/n: Add validity checks and simplify BitStructType #5573

Merged
merged 4 commits into from
Aug 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions python/taichi/lang/field.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import taichi.lang
from taichi._lib import core as _ti_core
from taichi.lang.exception import TaichiSyntaxError
from taichi.lang.util import (in_python_scope, python_scope, to_numpy_type,
to_paddle_type, to_pytorch_type)

Expand Down Expand Up @@ -421,14 +422,20 @@ def place(self, *args, shared_exponent=False):
"""
if shared_exponent:
self.bit_struct_type_builder.begin_placing_shared_exponent()
count = 0
for arg in args:
assert isinstance(arg, Field)
for var in arg._get_field_members():
self.fields.append((var.ptr,
self.bit_struct_type_builder.add_member(
var.ptr.get_dt())))
count += 1
if shared_exponent:
self.bit_struct_type_builder.end_placing_shared_exponent()
if count <= 1:
raise TaichiSyntaxError(
"At least 2 fields need to be placed when shared_exponent=True"
)


__all__ = ["BitpackedFields", "Field", "ScalarField"]
8 changes: 1 addition & 7 deletions taichi/ir/type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,17 +170,14 @@ BitStructType::BitStructType(
PrimitiveType *physical_type,
const std::vector<Type *> &member_types,
const std::vector<int> &member_bit_offsets,
const std::vector<bool> &member_owns_shared_exponents,
const std::vector<int> &member_exponents,
const std::vector<std::vector<int>> &member_exponent_users)
: physical_type_(physical_type),
member_types_(member_types),
member_bit_offsets_(member_bit_offsets),
member_owns_shared_exponents_(member_owns_shared_exponents),
member_exponents_(member_exponents),
member_exponent_users_(member_exponent_users) {
TI_ASSERT(member_types_.size() == member_bit_offsets_.size());
TI_ASSERT(member_types_.size() == member_owns_shared_exponents_.size());
TI_ASSERT(member_types_.size() == member_exponents_.size());
TI_ASSERT(member_types_.size() == member_exponent_users_.size());
int physical_type_bits = data_type_bits(physical_type_);
Expand All @@ -202,9 +199,6 @@ BitStructType::BitStructType(
TI_ASSERT(physical_type_bits >= member_total_bits);
for (auto i = 0; i < member_types_.size(); ++i) {
auto exponent = member_exponents_[i];
if (member_owns_shared_exponents_[i]) {
TI_ASSERT(exponent != -1);
}
if (exponent != -1) {
TI_ASSERT(std::find(member_exponent_users_[exponent].begin(),
member_exponent_users_[exponent].end(),
Expand All @@ -224,7 +218,7 @@ std::string BitStructType::to_string() const {
member_bit_offsets_[i]);
if (member_exponents_[i] != -1) {
str += fmt::format(" {}exp={}",
member_owns_shared_exponents_[i] ? "shared_" : "",
get_member_owns_shared_exponent(i) ? "shared_" : "",
member_exponents_[i]);
}
if (i + 1 < num_members) {
Expand Down
5 changes: 2 additions & 3 deletions taichi/ir/type.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ class BitStructType : public Type {
BitStructType(PrimitiveType *physical_type,
const std::vector<Type *> &member_types,
const std::vector<int> &member_bit_offsets,
const std::vector<bool> &member_owns_shared_exponents,
const std::vector<int> &member_exponents,
const std::vector<std::vector<int>> &member_exponent_users);

Expand All @@ -296,7 +295,8 @@ class BitStructType : public Type {
}

bool get_member_owns_shared_exponent(int i) const {
return member_owns_shared_exponents_[i];
return member_exponents_[i] != -1 &&
member_exponent_users_[member_exponents_[i]].size() > 1;
}

int get_member_exponent(int i) const {
Expand All @@ -311,7 +311,6 @@ class BitStructType : public Type {
PrimitiveType *physical_type_;
std::vector<Type *> member_types_;
std::vector<int> member_bit_offsets_;
std::vector<bool> member_owns_shared_exponents_;
std::vector<int> member_exponents_;
std::vector<std::vector<int>> member_exponent_users_;
};
Expand Down
5 changes: 2 additions & 3 deletions taichi/ir/type_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,11 @@ BitStructType *TypeFactory::get_bit_struct_type(
PrimitiveType *physical_type,
const std::vector<Type *> &member_types,
const std::vector<int> &member_bit_offsets,
const std::vector<bool> &member_owns_shared_exponents,
const std::vector<int> &member_exponents,
const std::vector<std::vector<int>> &member_exponent_users) {
bit_struct_types_.push_back(std::make_unique<BitStructType>(
physical_type, member_types, member_bit_offsets,
member_owns_shared_exponents, member_exponents, member_exponent_users));
physical_type, member_types, member_bit_offsets, member_exponents,
member_exponent_users));
return bit_struct_types_.back().get();
}

Expand Down
1 change: 0 additions & 1 deletion taichi/ir/type_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class TypeFactory {
PrimitiveType *physical_type,
const std::vector<Type *> &member_types,
const std::vector<int> &member_bit_offsets,
const std::vector<bool> &member_owns_shared_exponents,
const std::vector<int> &member_exponents,
const std::vector<std::vector<int>> &member_exponent_users);

Expand Down
8 changes: 1 addition & 7 deletions taichi/ir/type_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,6 @@ class BitStructTypeBuilder {
}
}
auto digits_id = add_member_impl(member_type);
if (is_placing_shared_exponent_) {
member_owns_shared_exponents_[digits_id] = true;
}
member_exponents_[digits_id] = exponent_id;
member_exponent_users_[exponent_id].push_back(digits_id);
return digits_id;
Expand All @@ -228,8 +225,7 @@ class BitStructTypeBuilder {

BitStructType *build() const {
return TypeFactory::get_instance().get_bit_struct_type(
physical_type_, member_types_, member_bit_offsets_,
member_owns_shared_exponents_, member_exponents_,
physical_type_, member_types_, member_bit_offsets_, member_exponents_,
member_exponent_users_);
}

Expand All @@ -238,7 +234,6 @@ class BitStructTypeBuilder {
int old_num_members = member_types_.size();
member_types_.push_back(member_type);
member_bit_offsets_.push_back(member_total_bits_);
member_owns_shared_exponents_.push_back(false);
member_exponents_.push_back(-1);
member_exponent_users_.push_back({});
QuantIntType *member_qit = nullptr;
Expand All @@ -263,7 +258,6 @@ class BitStructTypeBuilder {
std::vector<Type *> member_types_;
std::vector<int> member_bit_offsets_;
int member_total_bits_{0};
std::vector<bool> member_owns_shared_exponents_;
std::vector<int> member_exponents_;
std::vector<std::vector<int>> member_exponent_users_;
bool is_placing_shared_exponent_{false};
Expand Down
15 changes: 10 additions & 5 deletions tests/cpp/ir/type_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,24 @@ TEST(Type, TypeToString) {
auto qfl = TypeFactory::get_instance().get_quant_float_type(qi5, qu7, f32);

auto bs1 = TypeFactory::get_instance().get_bit_struct_type(
u16, {qi5, qu7}, {0, 5}, {false, false}, {-1, -1}, {{}, {}});
/*physical_type=*/u16, /*member_types=*/{qi5, qu7},
/*member_bit_offsets=*/{0, 5}, /*member_exponents=*/{-1, -1},
/*member_exponent_users=*/{{}, {}});
EXPECT_EQ(bs1->to_string(), "bs(0: qi5@0, 1: qu7@5)");

auto bs2 = TypeFactory::get_instance().get_bit_struct_type(
u32, {qu7, qfl, qu7, qfl}, {0, 7, 12, 19}, {false, false, false, false},
{-1, 0, -1, 2}, {{1}, {}, {3}, {}});
/*physical_type=*/u32, /*member_types=*/{qu7, qfl, qu7, qfl},
/*member_bit_offsets=*/{0, 7, 12, 19},
/*member_exponents=*/{-1, 0, -1, 2},
/*member_exponent_users=*/{{1}, {}, {3}, {}});
EXPECT_EQ(bs2->to_string(),
"bs(0: qu7@0, 1: qfl(d=qi5 e=qu7 c=f32)@7 exp=0, 2: qu7@12, 3: "
"qfl(d=qi5 e=qu7 c=f32)@19 exp=2)");

auto bs3 = TypeFactory::get_instance().get_bit_struct_type(
u32, {qu7, qfl, qfl}, {0, 7, 12}, {false, true, true}, {-1, 0, 0},
{{1, 2}, {}, {}});
/*physical_type=*/u32, /*member_types=*/{qu7, qfl, qfl},
/*member_bit_offsets=*/{0, 7, 12}, /*member_exponents=*/{-1, 0, 0},
/*member_exponent_users=*/{{1, 2}, {}, {}});
EXPECT_EQ(bs3->to_string(),
"bs(0: qu7@0, 1: qfl(d=qi5 e=qu7 c=f32)@7 shared_exp=0, 2: "
"qfl(d=qi5 e=qu7 c=f32)@12 shared_exp=0)");
Expand Down
16 changes: 14 additions & 2 deletions tests/python/test_bitpacked_fields.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import numpy as np
from pytest import approx
import pytest

import taichi as ti
from tests import test_utils
Expand Down Expand Up @@ -177,7 +177,7 @@ def assign():

for i in range(N):
if i // block_size % 2 == 0:
assert x[i] == approx(i, abs=1e-3)
assert x[i] == pytest.approx(i, abs=1e-3)
else:
assert x[i] == 0

Expand Down Expand Up @@ -213,3 +213,15 @@ def verify_val():

set_val()
verify_val()


@test_utils.test()
def test_invalid_place():
f15 = ti.types.quant.float(exp=5, frac=10)
p = ti.field(dtype=f15)
bitpack = ti.BitpackedFields(max_num_bits=32)
with pytest.raises(
ti.TaichiCompilationError,
match=
'At least 2 fields need to be placed when shared_exponent=True'):
ailzhang marked this conversation as resolved.
Show resolved Hide resolved
bitpack.place(p, shared_exponent=True)