Home
last modified time | relevance | path

Searched refs:launch_index (Results 1 – 25 of 26) sorted by relevance

12

/dports/graphics/openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/testrender/cuda/
H A Doptix_raytracer.cu19 rtDeclareVariable (uint2, launch_index, rtLaunchIndex, );
50 float2 d = make_float2 (static_cast<float>(launch_index.x) + 0.5f, in raygen()
51 static_cast<float>(launch_index.y) + 0.5f); in raygen()
69 output_buffer[launch_index] = prd.result; in raygen()
82 output_buffer[launch_index] = bad_color; in exception()
104 uint3 launch_index = optixGetLaunchIndex(); in __miss__() local
108 int pixel = launch_index.y * launch_dims.x + launch_index.x; in __miss__()
116 uint3 launch_index = optixGetLaunchIndex(); in __raygen__() local
126 const float2 d = make_float2 (static_cast<float>(launch_index.x) + 0.5f, in __raygen__()
127 static_cast<float>(launch_index.y) + 0.5f); in __raygen__()
H A Dwrapper.cu37 rtDeclareVariable (uint2, launch_index, rtLaunchIndex, );
140 if (launch_index.x == launch_dim.x / 2 && launch_index.y == launch_dim.y / 2) in process_closure()
381 uint3 launch_index = optixGetLaunchIndex(); in __closesthit__closest_hit_osl() local
384 int pixel = launch_index.y * launch_dims.x + launch_index.x; in __closesthit__closest_hit_osl()
H A Drend_lib.cu20 rtDeclareVariable (uint2, launch_index, rtLaunchIndex, );
/dports/graphics/py-openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/testrender/cuda/
H A Doptix_raytracer.cu19 rtDeclareVariable (uint2, launch_index, rtLaunchIndex, );
50 float2 d = make_float2 (static_cast<float>(launch_index.x) + 0.5f, in raygen()
51 static_cast<float>(launch_index.y) + 0.5f); in raygen()
69 output_buffer[launch_index] = prd.result; in raygen()
82 output_buffer[launch_index] = bad_color; in exception()
104 uint3 launch_index = optixGetLaunchIndex(); in __miss__() local
108 int pixel = launch_index.y * launch_dims.x + launch_index.x; in __miss__()
116 uint3 launch_index = optixGetLaunchIndex(); in __raygen__() local
126 const float2 d = make_float2 (static_cast<float>(launch_index.x) + 0.5f, in __raygen__()
127 static_cast<float>(launch_index.y) + 0.5f); in __raygen__()
H A Dwrapper.cu37 rtDeclareVariable (uint2, launch_index, rtLaunchIndex, );
140 if (launch_index.x == launch_dim.x / 2 && launch_index.y == launch_dim.y / 2) in process_closure()
381 uint3 launch_index = optixGetLaunchIndex(); in __closesthit__closest_hit_osl() local
384 int pixel = launch_index.y * launch_dims.x + launch_index.x; in __closesthit__closest_hit_osl()
H A Drend_lib.cu20 rtDeclareVariable (uint2, launch_index, rtLaunchIndex, );
/dports/graphics/openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/testshade/cuda/
H A Doptix_grid_renderer.cu22 rtDeclareVariable (uint2, launch_index, rtLaunchIndex, );
39 float2 d = make_float2 (static_cast<float>(launch_index.x) + 0.5f, in raygen()
40 static_cast<float>(launch_index.y) + 0.5f); in raygen()
91 output_buffer[launch_index] = {output[1], output[2], output[3]}; in raygen()
121 uint3 launch_index = optixGetLaunchIndex(); in __raygen__() local
126 float2 d = make_float2 (static_cast<float>(launch_index.x) + 0.5f, in __raygen__()
127 static_cast<float>(launch_index.y) + 0.5f); in __raygen__()
183 int pixel = launch_index.y * launch_dims.x + launch_index.x; in __raygen__()
/dports/graphics/py-openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/testshade/cuda/
H A Doptix_grid_renderer.cu22 rtDeclareVariable (uint2, launch_index, rtLaunchIndex, );
39 float2 d = make_float2 (static_cast<float>(launch_index.x) + 0.5f, in raygen()
40 static_cast<float>(launch_index.y) + 0.5f); in raygen()
91 output_buffer[launch_index] = {output[1], output[2], output[3]}; in raygen()
121 uint3 launch_index = optixGetLaunchIndex(); in __raygen__() local
126 float2 d = make_float2 (static_cast<float>(launch_index.x) + 0.5f, in __raygen__()
127 static_cast<float>(launch_index.y) + 0.5f); in __raygen__()
183 int pixel = launch_index.y * launch_dims.x + launch_index.x; in __raygen__()
/dports/math/vtk8/VTK-8.2.0/Rendering/OptiX/CUDA/
H A DPerspectiveCamera.cu37 rtDeclareVariable(uint2, launch_index, rtLaunchIndex, );
54 float2 pixel = (make_float2(launch_index)) * inv_screen - 1.f; in PerspectiveCameraRayGen()
63 unsigned int seed = tea<16>(screen.x*launch_index.y+launch_index.x, 0); in PerspectiveCameraRayGen()
97 frame_buffer[launch_index] = make_uchar4( c.x*255.99f, c.y*255.99f, c.z*255.99f, 255 ); in PerspectiveCameraRayGen()
98 depth_buffer[launch_index] = minDepth; in PerspectiveCameraRayGen()
H A DPhong.cu41 rtDeclareVariable(uint2, launch_index, rtLaunchIndex, );
/dports/net/cloud-init/cloud-init-21.4/tests/unittests/test_filters/
H A Dtest_launch_index.py8 from cloudinit.filters import launch_index
28 filtered_message = launch_index.Filter(index).apply(message)
106 filtered_message = launch_index.Filter(None).apply(message)
/dports/graphics/blender/blender-2.91.0/intern/cycles/kernel/kernels/optix/
H A Dkernel_optix.cu61 const uint3 launch_index = optixGetLaunchIndex(); in __raygen__kernel_optix_path_trace() local
63 uint pixel_offset = launch_index.x / __params.tile.num_samples; in __raygen__kernel_optix_path_trace()
64 uint sample_offset = launch_index.x % __params.tile.num_samples; in __raygen__kernel_optix_path_trace()
70 __params.tile.y + launch_index.y, in __raygen__kernel_optix_path_trace()
/dports/net/cloud-init/cloud-init-21.4/cloudinit/
H A Dcloud.py72 def launch_index(self): member in Cloud
73 return self.datasource.launch_index
/dports/net/cloud-init/cloud-init-21.4/cloudinit/sources/
H A D__init__.py28 from cloudinit.filters import launch_index
534 def launch_index(self): member in DataSource
543 launch_index.Filter(util.safe_int(self.launch_index)),
H A DDataSourceVultr.py110 def launch_index(self): member in DataSourceVultr
H A DDataSourceScaleway.py261 def launch_index(self): member in DataSourceScaleway
H A DDataSourceGCE.py92 def launch_index(self): member in DataSourceGCE
H A DDataSourceEc2.py143 def launch_index(self): member in DataSourceEc2
/dports/net/cloud-init/cloud-init-21.4/cloudinit/config/
H A Dcc_debug.py94 to_print.write("Launch IDX: %s\n" % (cloud.launch_index))
/dports/www/py-horizon/horizon-19.2.0/openstack_dashboard/api/
H A D_nova.py112 def launch_index(self): member in Server
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/tests/functional/compute/v2/
H A Dtest_server.py56 self.assertIsNotNone(sot.launch_index)
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/compute/v2/
H A Dserver.py141 launch_index = resource.Body('OS-EXT-SRV-ATTR:launch_index', type=int) variable in Server
/dports/net/cloud-init/cloud-init-21.4/doc/rtd/topics/
H A Ddatasources.rst139 def launch_index(self)
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/tests/unit/compute/v2/
H A Dtest_server.py240 sot.launch_index)
/dports/www/py-horizon/horizon-19.2.0/openstack_dashboard/conf/default_policies/
H A Dnova.yaml628 - ``OS-EXT-SRV-ATTR:launch_index`` (since microversion 2.3)

12