/opencl/oclfft

To get this branch, use:
bzr branch http://darksoft.org/webbzr/opencl/oclfft

« back to all changes in this revision

Viewing changes to procs.h

  • Committer: Matthias Vogelgesang
  • Date: 2011-01-31 09:18:47 UTC
  • Revision ID: git-v1:418c612a670678194837191e7c580047d8d58c28
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
//
 
3
// File:       procs.h
 
4
//
 
5
// Version:    <1.0>
 
6
//
 
7
// Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple Inc. ("Apple")
 
8
//             in consideration of your agreement to the following terms, and your use,
 
9
//             installation, modification or redistribution of this Apple software
 
10
//             constitutes acceptance of these terms.  If you do not agree with these
 
11
//             terms, please do not use, install, modify or redistribute this Apple
 
12
//             software.
 
13
//
 
14
//             In consideration of your agreement to abide by the following terms, and
 
15
//             subject to these terms, Apple grants you a personal, non - exclusive
 
16
//             license, under Apple's copyrights in this original Apple software ( the
 
17
//             "Apple Software" ), to use, reproduce, modify and redistribute the Apple
 
18
//             Software, with or without modifications, in source and / or binary forms;
 
19
//             provided that if you redistribute the Apple Software in its entirety and
 
20
//             without modifications, you must retain this notice and the following text
 
21
//             and disclaimers in all such redistributions of the Apple Software. Neither
 
22
//             the name, trademarks, service marks or logos of Apple Inc. may be used to
 
23
//             endorse or promote products derived from the Apple Software without specific
 
24
//             prior written permission from Apple.  Except as expressly stated in this
 
25
//             notice, no other rights or licenses, express or implied, are granted by
 
26
//             Apple herein, including but not limited to any patent rights that may be
 
27
//             infringed by your derivative works or by other works in which the Apple
 
28
//             Software may be incorporated.
 
29
//
 
30
//             The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
 
31
//             WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
 
32
//             WARRANTIES OF NON - INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A
 
33
//             PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION
 
34
//             ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
 
35
//
 
36
//             IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
 
37
//             CONSEQUENTIAL DAMAGES ( INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
38
//             SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
39
//             INTERRUPTION ) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION
 
40
//             AND / OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER
 
41
//             UNDER THEORY OF CONTRACT, TORT ( INCLUDING NEGLIGENCE ), STRICT LIABILITY OR
 
42
//             OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
43
//
 
44
// Copyright ( C ) 2008 Apple Inc. All Rights Reserved.
 
45
//
 
46
////////////////////////////////////////////////////////////////////////////////////////////////////
 
47
 
 
48
 
 
49
#define test_start()
 
50
#define log_perf(_number, _higherBetter, _numType, _format, ...) printf("Performance Number " _format " (in %s, %s): %g\n",##__VA_ARGS__, _numType, _higherBetter?"higher is better":"lower is better" , _number)
 
51
#define log_info printf
 
52
#define log_error printf
 
53
#define test_finish()