本文整理汇总了C++中View1::extent方法的典型用法代码示例。如果您正苦于以下问题:C++ View1::extent方法的具体用法?C++ View1::extent怎么用?C++ View1::extent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类View1
的用法示例。
在下文中一共展示了View1::extent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AssignFunctor
AssignFunctor( const View1 view_1, View2 view_2 )
: _view_1( view_1 )
, _view_2( view_2 )
{
static_assert( std::is_same<typename View1::traits::value_type,
typename View2::traits::value_type>::value,
"View data types must be the same" );
static_assert( std::is_same<typename View1::traits::device_type,
typename View2::traits::device_type>::value,
"View device types must be the same" );
static_assert( static_cast<unsigned>( View1::Rank ) == 2,
"View ranks must be 2" );
static_assert( static_cast<unsigned>( View2::Rank ) == 2,
"View ranks must be 2" );
DTK_REQUIRE( view_1.extent( 0 ) == view_2.extent( 0 ) );
DTK_REQUIRE( view_1.extent( 1 ) == view_2.extent( 1 ) );
}