1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
|
/*
BLIS
An object-based framework for developing high-performance BLAS-like
libraries.
Copyright (C) 2014, The University of Texas at Austin
Copyright (C) 2018 - 2019, Advanced Micro Devices, Inc.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
- Neither the name(s) of the copyright holder(s) nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "blis.h"
thrinfo_t* bli_thrinfo_create
(
rntm_t* rntm,
thrcomm_t* ocomm,
dim_t ocomm_id,
dim_t n_way,
dim_t work_id,
bool free_comm,
bszid_t bszid,
thrinfo_t* sub_node
)
{
#ifdef BLIS_ENABLE_MEM_TRACING
printf( "bli_thrinfo_create(): " );
#endif
thrinfo_t* thread = bli_sba_acquire( rntm, sizeof( thrinfo_t ) );
bli_thrinfo_init
(
thread,
ocomm, ocomm_id,
n_way, work_id,
free_comm,
bszid,
sub_node
);
return thread;
}
void bli_thrinfo_init
(
thrinfo_t* thread,
thrcomm_t* ocomm,
dim_t ocomm_id,
dim_t n_way,
dim_t work_id,
bool free_comm,
bszid_t bszid,
thrinfo_t* sub_node
)
{
bli_thrinfo_set_ocomm( ocomm, thread );
bli_thrinfo_set_ocomm_id( ocomm_id, thread );
bli_thrinfo_set_n_way( n_way, thread );
bli_thrinfo_set_work_id( work_id, thread );
bli_thrinfo_set_free_comm( free_comm, thread );
bli_thrinfo_set_bszid( bszid, thread );
bli_thrinfo_set_sub_node( sub_node, thread );
bli_thrinfo_set_sub_prenode( NULL, thread );
}
void bli_thrinfo_init_single
(
thrinfo_t* thread
)
{
bli_thrinfo_init
(
thread,
&BLIS_SINGLE_COMM, 0,
1,
0,
FALSE,
BLIS_NO_PART,
thread
);
}
void bli_thrinfo_free
(
rntm_t* rntm,
thrinfo_t* thread
)
{
if ( thread == NULL ||
thread == &BLIS_PACKM_SINGLE_THREADED ||
thread == &BLIS_GEMM_SINGLE_THREADED
) return;
thrinfo_t* thrinfo_sub_prenode = bli_thrinfo_sub_prenode( thread );
thrinfo_t* thrinfo_sub_node = bli_thrinfo_sub_node( thread );
// Recursively free all children of the current thrinfo_t.
if ( thrinfo_sub_prenode != NULL )
{
bli_thrinfo_free( rntm, thrinfo_sub_prenode );
}
// Recursively free all children of the current thrinfo_t.
if ( thrinfo_sub_node != NULL )
{
bli_thrinfo_free( rntm, thrinfo_sub_node );
}
// Free the communicators, but only if the current thrinfo_t struct
// is marked as needing them to be freed. The most common example of
// thrinfo_t nodes NOT marked as needing their comms freed are those
// associated with packm thrinfo_t nodes.
if ( bli_thrinfo_needs_free_comm( thread ) )
{
// The ochief always frees his communicator.
if ( bli_thread_am_ochief( thread ) )
bli_thrcomm_free( rntm, bli_thrinfo_ocomm( thread ) );
}
#ifdef BLIS_ENABLE_MEM_TRACING
printf( "bli_thrinfo_free(): " );
#endif
// Free the thrinfo_t struct.
bli_sba_release( rntm, thread );
}
// -----------------------------------------------------------------------------
void bli_thrinfo_grow
(
rntm_t* rntm,
cntl_t* cntl,
thrinfo_t* thread
)
{
// First, consider the prenode branch of the thrinfo_t tree, which should be
// expanded only if there exists a prenode branch in the cntl_t tree.
if ( bli_cntl_sub_prenode( cntl ) != NULL )
{
// We only need to take action if the thrinfo_t sub-node is NULL; if it
// is non-NULL, then it has already been created and we'll use it as-is.
if ( bli_thrinfo_sub_prenode( thread ) == NULL )
{
// Assertion / sanity check.
if ( bli_cntl_bszid( cntl ) != BLIS_MC )
{
printf( "Assertion failed: Expanding prenode for non-IC loop?\n" );
bli_abort();
}
// Now we must create the packa, jr, and ir nodes that make up
// the prenode branch of current cntl_t node.
// Create a new node (or, if needed, multiple nodes) along the
// prenode branch of the tree and return the pointer to the
// (highest) child.
thrinfo_t* thread_prenode = bli_thrinfo_rgrow_prenode
(
rntm,
cntl,
bli_cntl_sub_prenode( cntl ),
thread
);
// Attach the child thrinfo_t node for the secondary branch to its
// parent structure.
bli_thrinfo_set_sub_prenode( thread_prenode, thread );
}
}
// Now, grow the primary branch of the thrinfo_t tree.
// NOTE: If bli_thrinfo_rgrow() is being called, the sub_node field will
// always be non-NULL, and so there's no need to check it.
//if ( bli_cntl_sub_node( cntl ) != NULL )
{
// We only need to take action if the thrinfo_t sub-node is NULL; if it
// is non-NULL, then it has already been created and we'll use it as-is.
if ( bli_thrinfo_sub_node( thread ) == NULL )
{
// Create a new node (or, if needed, multiple nodes) along the
// main sub-node branch of the tree and return the pointer to the
// (highest) child.
thrinfo_t* thread_child = bli_thrinfo_rgrow
(
rntm,
cntl,
bli_cntl_sub_node( cntl ),
thread
);
// Attach the child thrinfo_t node for the primary branch to its
// parent structure.
bli_thrinfo_set_sub_node( thread_child, thread );
}
}
}
// -----------------------------------------------------------------------------
thrinfo_t* bli_thrinfo_rgrow
(
rntm_t* rntm,
cntl_t* cntl_par,
cntl_t* cntl_cur,
thrinfo_t* thread_par
)
{
thrinfo_t* thread_cur;
// We must handle two cases: those where the next node in the
// control tree is a partitioning node, and those where it is
// a non-partitioning (ie: packing) node.
if ( bli_cntl_bszid( cntl_cur ) != BLIS_NO_PART )
{
// Create the child thrinfo_t node corresponding to cntl_cur,
// with cntl_par being the parent.
thread_cur = bli_thrinfo_create_for_cntl
(
rntm,
cntl_par,
cntl_cur,
thread_par
);
}
else // if ( bli_cntl_bszid( cntl_cur ) == BLIS_NO_PART )
{
// Recursively grow the thread structure and return the top-most
// thrinfo_t node of that segment.
thrinfo_t* thread_seg = bli_thrinfo_rgrow
(
rntm,
cntl_par,
bli_cntl_sub_node( cntl_cur ),
thread_par
);
// Create a thrinfo_t node corresponding to cntl_cur. Since the
// corresponding cntl node, cntl_cur, is a non-partitioning node
// (bszid = BLIS_NO_PART), this means it's a packing node. Packing
// thrinfo_t nodes are formed differently than those corresponding to
// partitioning nodes; specifically, their work_id's are set equal to
// the their comm_id's. Also, notice that the free_comm field is set
// to FALSE since cntl_cur is a non-partitioning node. The reason:
// the communicator used here will be freed when thread_seg, or one
// of its descendents, is freed.
thread_cur = bli_thrinfo_create
(
rntm, // rntm
bli_thrinfo_ocomm( thread_seg ), // ocomm
bli_thread_ocomm_id( thread_seg ), // ocomm_id
bli_cntl_calc_num_threads_in( rntm, cntl_cur ), // n_way
bli_thread_ocomm_id( thread_seg ), // work_id
FALSE, // free_comm
BLIS_NO_PART, // bszid
thread_seg // sub_node
);
}
return thread_cur;
}
#define BLIS_NUM_STATIC_COMMS 80
thrinfo_t* bli_thrinfo_create_for_cntl
(
rntm_t* rntm,
cntl_t* cntl_par,
cntl_t* cntl_chl,
thrinfo_t* thread_par
)
{
// If we are running with a single thread, all of the code can be reduced
// and simplified to this.
if ( bli_rntm_calc_num_threads( rntm ) == 1 )
{
thrinfo_t* thread_chl = bli_thrinfo_create
(
rntm, // rntm
&BLIS_SINGLE_COMM, // ocomm
0, // ocomm_id
1, // n_way
0, // work_id
FALSE, // free_comm
BLIS_NO_PART, // bszid
NULL // sub_node
);
return thread_chl;
}
thrcomm_t* static_comms[ BLIS_NUM_STATIC_COMMS ];
thrcomm_t** new_comms = NULL;
const bszid_t bszid_chl = bli_cntl_bszid( cntl_chl );
const dim_t parent_nt_in = bli_thread_num_threads( thread_par );
const dim_t parent_n_way = bli_thread_n_way( thread_par );
const dim_t parent_comm_id = bli_thread_ocomm_id( thread_par );
const dim_t parent_work_id = bli_thread_work_id( thread_par );
// Sanity check: make sure the number of threads in the parent's
// communicator is divisible by the number of new sub-groups.
if ( parent_nt_in % parent_n_way != 0 )
{
printf( "Assertion failed: parent_nt_in <mod> parent_n_way != 0\n" );
bli_abort();
}
// Compute:
// - the number of threads inside the new child comm,
// - the current thread's id within the new communicator,
// - the current thread's work id, given the ways of parallelism
// to be obtained within the next loop.
const dim_t child_nt_in = bli_cntl_calc_num_threads_in( rntm, cntl_chl );
const dim_t child_n_way = bli_rntm_ways_for( bszid_chl, rntm );
const dim_t child_comm_id = parent_comm_id % child_nt_in;
const dim_t child_work_id = child_comm_id / ( child_nt_in / child_n_way );
//printf( "thread %d: child_n_way = %d child_nt_in = %d parent_n_way = %d (bszid = %d->%d)\n", (int)child_comm_id, (int)child_nt_in, (int)child_n_way, (int)parent_n_way, (int)bli_cntl_bszid( cntl_par ), (int)bszid_chl );
// The parent's chief thread creates a temporary array of thrcomm_t
// pointers.
if ( bli_thread_am_ochief( thread_par ) )
{
err_t r_val;
if ( parent_n_way > BLIS_NUM_STATIC_COMMS )
new_comms = bli_malloc_intl( parent_n_way * sizeof( thrcomm_t* ), &r_val );
else
new_comms = static_comms;
}
// Broadcast the temporary array to all threads in the parent's
// communicator.
new_comms = bli_thread_broadcast( thread_par, new_comms );
// Chiefs in the child communicator allocate the communicator
// object and store it in the array element corresponding to the
// parent's work id.
if ( child_comm_id == 0 )
new_comms[ parent_work_id ] = bli_thrcomm_create( rntm, child_nt_in );
bli_thread_barrier( thread_par );
// All threads create a new thrinfo_t node using the communicator
// that was created by their chief, as identified by parent_work_id.
thrinfo_t* thread_chl = bli_thrinfo_create
(
rntm, // rntm
new_comms[ parent_work_id ], // ocomm
child_comm_id, // ocomm_id
child_n_way, // n_way
child_work_id, // work_id
TRUE, // free_comm
bszid_chl, // bszid
NULL // sub_node
);
bli_thread_barrier( thread_par );
// The parent's chief thread frees the temporary array of thrcomm_t
// pointers.
if ( bli_thread_am_ochief( thread_par ) )
{
if ( parent_n_way > BLIS_NUM_STATIC_COMMS )
bli_free_intl( new_comms );
}
return thread_chl;
}
// -----------------------------------------------------------------------------
thrinfo_t* bli_thrinfo_rgrow_prenode
(
rntm_t* rntm,
cntl_t* cntl_par,
cntl_t* cntl_cur,
thrinfo_t* thread_par
)
{
thrinfo_t* thread_cur;
// We must handle two cases: those where the next node in the
// control tree is a partitioning node, and those where it is
// a non-partitioning (ie: packing) node.
if ( bli_cntl_bszid( cntl_cur ) != BLIS_NO_PART )
{
// Create the child thrinfo_t node corresponding to cntl_cur,
// with cntl_par being the parent.
thread_cur = bli_thrinfo_create_for_cntl_prenode
(
rntm,
cntl_par,
cntl_cur,
thread_par
);
}
else // if ( bli_cntl_bszid( cntl_cur ) == BLIS_NO_PART )
{
// Recursively grow the thread structure and return the top-most
// thrinfo_t node of that segment.
thrinfo_t* thread_seg = bli_thrinfo_rgrow_prenode
(
rntm,
cntl_par,
bli_cntl_sub_node( cntl_cur ),
thread_par
);
// Create a thrinfo_t node corresponding to cntl_cur. Since the
// corresponding cntl node, cntl_cur, is a non-partitioning node
// (bszid = BLIS_NO_PART), this means it's a packing node. Packing
// thrinfo_t nodes are formed differently than those corresponding to
// partitioning nodes; specifically, their work_id's are set equal to
// the their comm_id's. Also, notice that the free_comm field is set
// to FALSE since cntl_cur is a non-partitioning node. The reason:
// the communicator used here will be freed when thread_seg, or one
// of its descendents, is freed.
thread_cur = bli_thrinfo_create
(
rntm, // rntm
bli_thrinfo_ocomm( thread_seg ), // ocomm
bli_thread_ocomm_id( thread_seg ), // ocomm_id
bli_cntl_calc_num_threads_in( rntm, cntl_par ), // n_way
bli_thread_ocomm_id( thread_seg ), // work_id
FALSE, // free_comm
BLIS_NO_PART, // bszid
thread_seg // sub_node
);
}
return thread_cur;
}
thrinfo_t* bli_thrinfo_create_for_cntl_prenode
(
rntm_t* rntm,
cntl_t* cntl_par,
cntl_t* cntl_chl,
thrinfo_t* thread_par
)
{
// NOTE: This function only has to work for the ic -> (pa -> jr)
// thrinfo_t tree branch extension. After that, the function
// bli_thrinfo_create_for_cntl() will be called for the last jr->ir
// branch extension.
const bszid_t bszid_chl = bli_cntl_bszid( cntl_chl );
const dim_t parent_nt_in = bli_thread_num_threads( thread_par );
const dim_t parent_n_way = bli_thread_n_way( thread_par );
const dim_t parent_comm_id = bli_thread_ocomm_id( thread_par );
//const dim_t parent_work_id = bli_thread_work_id( thread_par );
// Sanity check: make sure the number of threads in the parent's
// communicator is divisible by the number of new sub-groups.
if ( parent_nt_in % parent_n_way != 0 )
{
printf( "Assertion failed: parent_nt_in (%d) <mod> parent_n_way (%d) != 0\n",
( int )parent_nt_in, ( int )parent_n_way );
bli_abort();
}
//dim_t child_nt_in = bli_cntl_calc_num_threads_in( rntm, cntl_chl );
//dim_t child_n_way = bli_rntm_ways_for( bszid_chl, rntm );
const dim_t child_nt_in = parent_nt_in;
const dim_t child_n_way = parent_nt_in;
const dim_t child_comm_id = parent_comm_id % child_nt_in;
const dim_t child_work_id = child_comm_id / ( child_nt_in / child_n_way );
bli_thread_barrier( thread_par );
// NOTE: Recall that parent_comm_id == child_comm_id, so checking for the
// parent's chief-ness is equivalent to checking for chief-ness in the new
// about-to-be-created communicator group.
thrcomm_t* new_comm = NULL;
if ( bli_thread_am_ochief( thread_par ) )
new_comm = bli_thrcomm_create( rntm, child_nt_in );
// Broadcast the new thrcomm_t address to the other threads in the
// parent's group.
new_comm = bli_thread_broadcast( thread_par, new_comm );
// All threads create a new thrinfo_t node using the communicator
// that was created by their chief, as identified by parent_work_id.
thrinfo_t* thread_chl = bli_thrinfo_create
(
rntm, // rntm
new_comm, // ocomm
child_comm_id, // ocomm_id
child_n_way, // n_way
child_work_id, // work_id
TRUE, // free_comm
bszid_chl, // bszid
NULL // sub_node
);
bli_thread_barrier( thread_par );
return thread_chl;
}
// -----------------------------------------------------------------------------
#if 0
void bli_thrinfo_grow_tree
(
rntm_t* rntm,
cntl_t* cntl,
thrinfo_t* thread
)
{
cntl_t* cntl_jc = cntl;
thrinfo_t* thrinfo_jc = thread;
bli_thrinfo_grow( rntm, cntl_jc, thrinfo_jc );
// inside jc loop:
cntl_t* cntl_pc = bli_cntl_sub_node( cntl_jc );
thrinfo_t* thrinfo_pc = bli_thrinfo_sub_node( thrinfo_jc );
bli_thrinfo_grow( rntm, cntl_pc, thrinfo_pc );
// inside pc loop:
cntl_t* cntl_pb = bli_cntl_sub_node( cntl_pc );
thrinfo_t* thrinfo_pb = bli_thrinfo_sub_node( thrinfo_pc );
bli_thrinfo_grow( rntm, cntl_pb, thrinfo_pb );
// after pb packing:
cntl_t* cntl_ic = bli_cntl_sub_node( cntl_pb );
thrinfo_t* thrinfo_ic = bli_thrinfo_sub_node( thrinfo_pb );
bli_thrinfo_grow( rntm, cntl_ic, thrinfo_ic );
// -- main branch --
// inside ic loop:
cntl_t* cntl_pa = bli_cntl_sub_node( cntl_ic );
thrinfo_t* thrinfo_pa = bli_thrinfo_sub_node( thrinfo_ic );
bli_thrinfo_grow( rntm, cntl_pa, thrinfo_pa );
// after pa packing:
cntl_t* cntl_jr = bli_cntl_sub_node( cntl_pa );
thrinfo_t* thrinfo_jr = bli_thrinfo_sub_node( thrinfo_pa );
bli_thrinfo_grow( rntm, cntl_jr, thrinfo_jr );
// inside jr loop:
//cntl_t* cntl_ir = bli_cntl_sub_node( cntl_jr );
//thrinfo_t* thrinfo_ir = bli_thrinfo_sub_node( thrinfo_jr );
// -- trsm branch --
// inside ic loop:
cntl_t* cntl_pa0 = bli_cntl_sub_prenode( cntl_ic );
thrinfo_t* thrinfo_pa0 = bli_thrinfo_sub_prenode( thrinfo_ic );
bli_thrinfo_grow( rntm, cntl_pa0, thrinfo_pa0 );
// after pa packing:
cntl_t* cntl_jr0 = bli_cntl_sub_node( cntl_pa0 );
thrinfo_t* thrinfo_jr0 = bli_thrinfo_sub_node( thrinfo_pa0 );
bli_thrinfo_grow( rntm, cntl_jr0, thrinfo_jr0 );
// inside jr loop:
//cntl_t* cntl_ir0 = bli_cntl_sub_node( cntl_jr0 );
//thrinfo_t* thrinfo_ir0= bli_thrinfo_sub_node( thrinfo_jr0 );
}
void bli_thrinfo_grow_tree_ic
(
rntm_t* rntm,
cntl_t* cntl,
thrinfo_t* thread
)
{
cntl_t* cntl_ic = cntl;
thrinfo_t* thrinfo_ic = thread;
bli_thrinfo_grow( rntm, cntl_ic, thrinfo_ic );
// -- main branch --
// inside ic loop:
cntl_t* cntl_pa = bli_cntl_sub_node( cntl_ic );
thrinfo_t* thrinfo_pa = bli_thrinfo_sub_node( thrinfo_ic );
bli_thrinfo_grow( rntm, cntl_pa, thrinfo_pa );
// after pa packing:
cntl_t* cntl_jr = bli_cntl_sub_node( cntl_pa );
thrinfo_t* thrinfo_jr = bli_thrinfo_sub_node( thrinfo_pa );
bli_thrinfo_grow( rntm, cntl_jr, thrinfo_jr );
// inside jr loop:
//cntl_t* cntl_ir = bli_cntl_sub_node( cntl_jr );
//thrinfo_t* thrinfo_ir = bli_thrinfo_sub_node( thrinfo_jr );
// -- trsm branch --
// inside ic loop:
cntl_t* cntl_pa0 = bli_cntl_sub_prenode( cntl_ic );
thrinfo_t* thrinfo_pa0 = bli_thrinfo_sub_prenode( thrinfo_ic );
bli_thrinfo_grow( rntm, cntl_pa0, thrinfo_pa0 );
// after pa packing:
cntl_t* cntl_jr0 = bli_cntl_sub_node( cntl_pa0 );
thrinfo_t* thrinfo_jr0 = bli_thrinfo_sub_node( thrinfo_pa0 );
bli_thrinfo_grow( rntm, cntl_jr0, thrinfo_jr0 );
// inside jr loop:
//cntl_t* cntl_ir0 = bli_cntl_sub_node( cntl_jr0 );
//thrinfo_t* thrinfo_ir0= bli_thrinfo_sub_node( thrinfo_jr0 );
}
#endif
|