本文整理汇总了C++中dynd::nd::array::equals_exact方法的典型用法代码示例。如果您正苦于以下问题:C++ array::equals_exact方法的具体用法?C++ array::equals_exact怎么用?C++ array::equals_exact使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dynd::nd::array
的用法示例。
在下文中一共展示了array::equals_exact方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: CompareDyNDArrays
inline ::testing::AssertionResult CompareDyNDArrays(const char *expr1, const char *expr2, const dynd::nd::array &val1,
const dynd::nd::array &val2)
{
using namespace dynd;
if (val1.get_type().get_type_id() == cuda_device_type_id && val2.get_type().get_type_id() == cuda_device_type_id) {
return CompareDyNDArrays(expr1, expr2, val1.to_host(), val2.to_host());
}
if (val1.equals_exact(val2)) {
return ::testing::AssertionSuccess();
}
else {
if (val1.get_type() != val2.get_type()) {
return ::testing::AssertionFailure() << "The types of " << expr1 << " and " << expr2 << " do not match\n" << expr1
<< " has type " << val1.get_type() << ",\n" << expr2 << " has type "
<< val2.get_type() << ".";
}
else if (val1.get_shape() != val2.get_shape()) {
return ::testing::AssertionFailure() << "The shapes of " << expr1 << " and " << expr2 << " do not match\n"
<< expr1 << " has shape " << ShapeFormatter(val1.get_shape()) << ",\n"
<< expr2 << " has shape " << ShapeFormatter(val2.get_shape()) << ".";
}
else if (val1.get_type().get_kind() == struct_kind) {
const ndt::struct_type *bsd = val1.get_type().extended<ndt::struct_type>();
intptr_t field_count = bsd->get_field_count();
for (intptr_t i = 0; i < field_count; ++i) {
nd::array field1 = val1(i), field2 = val2(i);
if (!field1.equals_exact(field2)) {
return ::testing::AssertionFailure()
<< "The values of " << expr1 << " and " << expr2 << " do not match at field index " << i << ", name \""
<< bsd->get_field_name(i) << "\"\n" << expr1 << " has field value " << field1 << ",\n" << expr2
<< " has field value " << field2 << ".";
}
}
return ::testing::AssertionFailure() << "DYND ASSERTION INTERNAL ERROR: One of the struct fields "
"should have compared unequal";
}
else if (val1.get_type().get_kind() == tuple_kind) {
const ndt::tuple_type *bsd = val1.get_type().extended<ndt::tuple_type>();
intptr_t field_count = bsd->get_field_count();
for (intptr_t i = 0; i < field_count; ++i) {
nd::array field1 = val1(i), field2 = val2(i);
if (!field1.equals_exact(field2)) {
return ::testing::AssertionFailure()
<< "The values of " << expr1 << " and " << expr2 << " do not match at field index " << i << "\"\n"
<< expr1 << " has field value " << field1 << ",\n" << expr2 << " has field value " << field2 << ".";
}
}
return ::testing::AssertionFailure() << "DYND ASSERTION INTERNAL ERROR: One of the tuple fields "
"should have compared unequal";
}
else if (val1.get_ndim() > 0) {
intptr_t dim_size = val1.get_dim_size();
for (intptr_t i = 0; i < dim_size; ++i) {
nd::array sub1 = val1(i), sub2 = val2(i);
if (!sub1.equals_exact(sub2)) {
return ::testing::AssertionFailure()
<< "The values of " << expr1 << " and " << expr2 << " do not match at index " << i << "\"\n" << expr1
<< " has subarray value " << sub1 << ",\n" << expr2 << " has subarray value " << sub2 << ".";
}
}
return ::testing::AssertionFailure() << "DYND ASSERTION INTERNAL ERROR: One of the subarrays "
"should have compared unequal\n"
<< expr1 << " has value " << val1 << ",\n" << expr2 << " has value " << val2
<< ".";
}
else {
return ::testing::AssertionFailure() << "The values of " << expr1 << " and " << expr2 << " do not match\n"
<< expr1 << " has value " << val1 << ",\n" << expr2 << " has value " << val2
<< ".";
}
}
}