2004-08-12 23:30:16 +00:00
|
|
|
/*
|
2004-11-22 01:38:40 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-08-12 23:30:16 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
*
|
2004-08-16 01:13:25 +00:00
|
|
|
* Define the cache characteristics of the platform
|
2004-08-12 23:30:16 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2004-08-16 01:13:25 +00:00
|
|
|
#ifndef OMPI_SYS_CACHE_H
|
|
|
|
#define OMPI_SYS_CACHE_H 1
|
2004-08-12 23:30:16 +00:00
|
|
|
|
2004-08-16 01:13:25 +00:00
|
|
|
/**
|
|
|
|
* Size of cache line.
|
|
|
|
*
|
|
|
|
* For now hardwire this to a reasonable value, and automate later - RLG
|
|
|
|
*/
|
2004-08-12 23:30:16 +00:00
|
|
|
#define CACHE_LINE_SIZE 128
|
|
|
|
|
|
|
|
|
2004-08-16 01:13:25 +00:00
|
|
|
#endif /* OMPI_SYS_CACHE_H */
|