1 /*
  2 * Copyright (c) 2025, Oracle and/or its affiliates. All rights reserved.
  3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4 *
  5 * This code is free software; you can redistribute it and/or modify it
  6 * under the terms of the GNU General Public License version 2 only, as
  7 * published by the Free Software Foundation.  Oracle designates this
  8 * particular file as subject to the "Classpath" exception as provided
  9 * by Oracle in the LICENSE file that accompanied this code.
 10 *
 11 * This code is distributed in the hope that it will be useful, but WITHOUT
 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 14 * version 2 for more details (a copy is included in the LICENSE file that
 15 * accompanied this code).
 16 *
 17 * You should have received a copy of the GNU General Public License version
 18 * 2 along with this work; if not, write to the Free Software Foundation,
 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 20 *
 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 22 * or visit www.oracle.com if you need additional information or have any
 23 * questions.
 24 */
 25 /*
 26 You probably should not edit this this file!!!
 27 It was auto generated 2025-11-04 15:18:52.357 by hat.FFIConfigCreator
 28 */
 29 #pragma once
 30 
 31 #include <iostream>
 32 
 33 
 34 struct BasicConfig{
 35     static constexpr int MINIMIZE_COPIES_BIT              = 1<<0x8;
 36     static constexpr int TRACE_BIT                        = 1<<0x9;
 37     static constexpr int PROFILE_BIT                      = 1<<0xa;
 38     static constexpr int SHOW_CODE_BIT                    = 1<<0xb;
 39     static constexpr int SHOW_KERNEL_MODEL_BIT            = 1<<0xc;
 40     static constexpr int SHOW_COMPUTE_MODEL_BIT           = 1<<0xd;
 41     static constexpr int SHOW_DEVICE_INFO_BIT             = 1<<0xe;
 42     static constexpr int INFO_BIT                         = 1<<0xf;
 43     static constexpr int WARN_BIT                         = 1<<0x10;
 44     static constexpr int UNIT_BIT                         = 1<<0x11;
 45     static constexpr int TRACE_COPIES_BIT                 = 1<<0x12;
 46     static constexpr int TRACE_SKIPPED_COPIES_BIT         = 1<<0x13;
 47     static constexpr int TRACE_ENQUEUES_BIT               = 1<<0x14;
 48     static constexpr int TRACE_CALLS_BIT                  = 1<<0x15;
 49     static constexpr int SHOW_WHY_BIT                     = 1<<0x16;
 50     static constexpr int SHOW_STATE_BIT                   = 1<<0x17;
 51     static constexpr int PTX_BIT                          = 1<<0x18;
 52     static constexpr int INTERPRET_BIT                    = 1<<0x19;
 53     static constexpr int HEADLESS_BIT                     = 1<<0x1a;
 54     static constexpr int SHOW_LOWERED_KERNEL_MODEL_BIT    = 1<<0x1b;
 55     static constexpr int SHOW_COMPILATION_PHASES_BIT      = 1<<0x1c;
 56     static constexpr int PROFILE_CUDA_KERNEL_BIT          = 1<<0x1d;
 57     const static char *bitNames[]; // See below for initialization
 58     const static char *bitDescriptions[]; // See below for initialization
 59     int configBits;
 60     bool minimizeCopies;
 61     bool trace;
 62     bool profile;
 63     bool showCode;
 64     bool showKernelModel;
 65     bool showComputeModel;
 66     bool showDeviceInfo;
 67     bool info;
 68     bool warn;
 69     bool unit;
 70     bool traceCopies;
 71     bool traceSkippedCopies;
 72     bool traceEnqueues;
 73     bool traceCalls;
 74     bool showWhy;
 75     bool showState;
 76     bool ptx;
 77     bool interpret;
 78     bool headless;
 79     bool showLoweredKernelModel;
 80     bool showCompilationPhases;
 81     bool profileCudaKernel;
 82     int platform;
 83     int device;
 84     bool alwaysCopy;
 85     explicit BasicConfig(int configBits):
 86         configBits(configBits),
 87         minimizeCopies((configBits & MINIMIZE_COPIES_BIT)==MINIMIZE_COPIES_BIT),
 88         trace((configBits & TRACE_BIT)==TRACE_BIT),
 89         profile((configBits & PROFILE_BIT)==PROFILE_BIT),
 90         showCode((configBits & SHOW_CODE_BIT)==SHOW_CODE_BIT),
 91         showKernelModel((configBits & SHOW_KERNEL_MODEL_BIT)==SHOW_KERNEL_MODEL_BIT),
 92         showComputeModel((configBits & SHOW_COMPUTE_MODEL_BIT)==SHOW_COMPUTE_MODEL_BIT),
 93         showDeviceInfo((configBits & SHOW_DEVICE_INFO_BIT)==SHOW_DEVICE_INFO_BIT),
 94         info((configBits & INFO_BIT)==INFO_BIT),
 95         warn((configBits & WARN_BIT)==WARN_BIT),
 96         unit((configBits & UNIT_BIT)==UNIT_BIT),
 97         traceCopies((configBits & TRACE_COPIES_BIT)==TRACE_COPIES_BIT),
 98         traceSkippedCopies((configBits & TRACE_SKIPPED_COPIES_BIT)==TRACE_SKIPPED_COPIES_BIT),
 99         traceEnqueues((configBits & TRACE_ENQUEUES_BIT)==TRACE_ENQUEUES_BIT),
100         traceCalls((configBits & TRACE_CALLS_BIT)==TRACE_CALLS_BIT),
101         showWhy((configBits & SHOW_WHY_BIT)==SHOW_WHY_BIT),
102         showState((configBits & SHOW_STATE_BIT)==SHOW_STATE_BIT),
103         ptx((configBits & PTX_BIT)==PTX_BIT),
104         interpret((configBits & INTERPRET_BIT)==INTERPRET_BIT),
105         headless((configBits & HEADLESS_BIT)==HEADLESS_BIT),
106         showLoweredKernelModel((configBits & SHOW_LOWERED_KERNEL_MODEL_BIT)==SHOW_LOWERED_KERNEL_MODEL_BIT),
107         showCompilationPhases((configBits & SHOW_COMPILATION_PHASES_BIT)==SHOW_COMPILATION_PHASES_BIT),
108         profileCudaKernel((configBits & PROFILE_CUDA_KERNEL_BIT)==PROFILE_CUDA_KERNEL_BIT),
109         platform(configBits & 0xf),
110         alwaysCopy(!minimizeCopies),
111         device((configBits & 0xf0) >> 4){
112             if(showDeviceInfo){
113                 std::cout << "native minimizeCopies " << minimizeCopies << std::endl;
114                 std::cout << "native trace " << trace << std::endl;
115                 std::cout << "native profile " << profile << std::endl;
116                 std::cout << "native showCode " << showCode << std::endl;
117                 std::cout << "native showKernelModel " << showKernelModel << std::endl;
118                 std::cout << "native showComputeModel " << showComputeModel << std::endl;
119                 std::cout << "native showDeviceInfo " << showDeviceInfo << std::endl;
120                 std::cout << "native info " << info << std::endl;
121                 std::cout << "native warn " << warn << std::endl;
122                 std::cout << "native unit " << unit << std::endl;
123                 std::cout << "native traceCopies " << traceCopies << std::endl;
124                 std::cout << "native traceSkippedCopies " << traceSkippedCopies << std::endl;
125                 std::cout << "native traceEnqueues " << traceEnqueues << std::endl;
126                 std::cout << "native traceCalls " << traceCalls << std::endl;
127                 std::cout << "native showWhy " << showWhy << std::endl;
128                 std::cout << "native showState " << showState << std::endl;
129                 std::cout << "native ptx " << ptx << std::endl;
130                 std::cout << "native interpret " << interpret << std::endl;
131                 std::cout << "native headless " << headless << std::endl;
132                 std::cout << "native showLoweredKernelModel " << showLoweredKernelModel << std::endl;
133                 std::cout << "native showCompilationPhases " << showCompilationPhases << std::endl;
134                 std::cout << "native profileCudaKernel " << profileCudaKernel << std::endl;
135                 std::cout << "native platform " << platform << std::endl;
136                 std::cout << "native device " << device << std::endl;
137             }
138         }
139     virtual ~BasicConfig()= default;
140 };
141 
142 #ifdef shared_cpp
143 const char *BasicConfig::bitNames[]={
144     "MINIMIZE_COPIES_BIT",
145     "TRACE_BIT",
146     "PROFILE_BIT",
147     "SHOW_CODE_BIT",
148     "SHOW_KERNEL_MODEL_BIT",
149     "SHOW_COMPUTE_MODEL_BIT",
150     "SHOW_DEVICE_INFO_BIT",
151     "INFO_BIT",
152     "WARN_BIT",
153     "UNIT_BIT",
154     "TRACE_COPIES_BIT",
155     "TRACE_SKIPPED_COPIES_BIT",
156     "TRACE_ENQUEUES_BIT",
157     "TRACE_CALLS_BIT",
158     "SHOW_WHY_BIT",
159     "SHOW_STATE_BIT",
160     "PTX_BIT",
161     "INTERPRET_BIT",
162     "HEADLESS_BIT",
163     "SHOW_LOWERED_KERNEL_MODEL_BIT",
164     "SHOW_COMPILATION_PHASES_BIT",
165     "PROFILE_CUDA_KERNEL_BIT",
166 };
167 const char *BasicConfig::bitDescriptions[]={
168     "FFI ONLY Try to minimize copies",
169     "FFI ONLY trace code",
170     "FFI ONLY Turn on profiling",
171     "Show generated code (PTX/OpenCL/CUDA)",
172     "Show (via OpWriter) Kernel Model",
173     "Show (via OpWriter) Compute Model",
174     "FFI show platform and device info",
175     "INFO level logging",
176     "WARN(ing) level logging ",
177     "UNIT test level logging  ",
178     "FFI ONLY trace copies",
179     "FFI ONLY Trace skipped copies (see MINIMIZE_COPIES) ",
180     "FFI ONLY trace enqueued tasks",
181     "FFI ONLY trace calls (enter/leave)",
182     "FFI ONLY show why we decided to copy buffer (H to D)",
183     "Show iface buffer state changes",
184     "FFI (NVIDIA) ONLY pass PTX rather than C99 CUDA code",
185     "Interpret the code model rather than converting to bytecode",
186     "Don't show UI",
187     "Show (via OpWriter) Lowered Kernel Model",
188     "Show HAT compilation phases",
189     "Add -lineinfo to CUDA kernel compilation for profiling and debugging",
190 };
191 #endif