Files
blis/kernels
Meghana Vankadari ceee4b7818 Fix in DGEMMSUP for cases where C matrix is row-major.
Details:
- variable m0 is being loaded into a register without typecasting
  it to uint64_t. This resulted in seg-fault when int size is set
  to be 32 bits during configure time.
- Any variable that is loaded using mov in assembly needs to be
  typecasted to uint64_t before begin_asm, so that change in size
  of integer doesn't affect the functionality.
- Modified all instances using variable m0 to use variable 'm' where
  m = (uint64_t)m0;

AMD-Internal: [CPUPL-4971]
Change-Id: I49b66d2cacf19ace40ab44c9f85904644e8921f4
2024-04-25 13:07:23 -04:00
..
2023-11-23 08:54:31 -05:00
2023-11-22 17:51:46 -05:00
2023-11-23 08:54:31 -05:00
2023-11-23 08:54:31 -05:00
2020-07-22 18:24:26 +05:30