comparison src/share/vm/runtime/gpu.hpp @ 11822:365d8f385fb5

PTX: one-dimensional parallel warp invocation, ParallelOver annotation
author Morris Meyer <morris.meyer@oracle.com>
date Sun, 29 Sep 2013 14:47:12 -0400
parents 4f69a5189e77
children 8d8f63069f58
comparison
equal deleted inserted replaced
11821:d8659ad83fcc 11822:365d8f385fb5
43 static void probe_gpu(); 43 static void probe_gpu();
44 44
45 static void initialize_gpu(); 45 static void initialize_gpu();
46 46
47 static void * generate_kernel(unsigned char *code, int code_len, const char *name); 47 static void * generate_kernel(unsigned char *code, int code_len, const char *name);
48
49 static bool execute_warp(int dimX, int dimY, int dimZ,
50 address kernel, PTXKernelArguments & ptxka, JavaValue & ret);
48 51
49 static bool execute_kernel(address kernel, PTXKernelArguments & ptxka, JavaValue & ret); 52 static bool execute_kernel(address kernel, PTXKernelArguments & ptxka, JavaValue & ret);
50 53
51 static void set_available(bool value) { 54 static void set_available(bool value) {
52 _available = value; 55 _available = value;