Skip to content

Commit

Permalink
Merge pull request #257 from ValeevGroup/bimalgaudel-patch-1
Browse files Browse the repository at this point in the history
Update README.md for TA::TiledRange1
  • Loading branch information
evaleev authored Feb 15, 2021
2 parents 481103b + ecbb3c7 commit 53af746
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ int main(int argc, char** argv) {
// Construct a 2D tiled range structure that defines
// the tiling of an array. Each dimension contains
// 10 tiles.
TA::TiledRange trange =
{ { 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 },
{ 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 } };
auto trange = TA::TiledRange{
TA::TiledRange1{0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100},
TA::TiledRange1{0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100}};
// Construct and fill the argument arrays with data
TA::TArrayD A(world, trange);
Expand Down

0 comments on commit 53af746

Please sign in to comment.