Files
blis/config
Field G. Van Zee 3c52725693 Renamed/moved l3 zen ukernels to haswell kernel set.
Details:
- Renamed the microkernels in kernels/zen/3 to kernels/haswell/3 and
  then updated the file contents to use the 'haswell' infix.
- Updated bli_cntx_init_zen.c and bli_cntx_init_haswell.c according to
  above function renames.
- Moved/updated the corresponding prototypes in bli_kernels_zen.h to
  bli_kernels_haswell.h.
- Updated config_registry according to above changes.
- NOTE: This rename reflects the fact that haswell microkernels are
  specifically written to overcome the floating-point latency for FMA
  instructions on Intel Haswell-like architectures, which can issue two
  FMA instructions per cycle. These ukernels happen to work fine on AMD
  Zen-based architectures. However, Zen only issues one FMA per cycle,
  which, while halving its floating-point throughput, gives it extra
  flexibility in the design of its microkernels--namely, mr and nr can
  be smaller and still overcome the floating-point latency for those
  single-issue cores. A smaller value of mr and nr allows for a larger
  value of kc, which may be useful in some situations. In the future,
  we may write such Zen-specific microkernels to take advantage of this
  additional flexibility.
2018-10-17 14:56:22 -05:00
..
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-10-17 11:26:00 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00
2018-08-29 18:06:41 -05:00

For more information on sub-configurations and configuration families in BLIS, please read the Configuration Guide, which can be viewed in markdown-rendered form from the BLIS wiki page.

If you don't have time, or are impatient, take a look at the config_registry file in the top-level directory of the BLIS distribution. It contains a grammar-like mapping of configuration names, or families, to sub-configurations, which may be other families. Keep in mind that the / notation:

<config>: <config>/<name>

means that the kernel set associated with <name> should be made available to the configuration <config> if <config> is targeted at configure-time. (Some configurations borrow kernels from other configurations, and this is how we specify that requirement.)