gpu                52 python_bindings/python/Func_gpu.h     return that.gpu(block_x, thread_x, device_api);
gpu                59 python_bindings/python/Func_gpu.h     return that.gpu(block_x, block_y, thread_x, thread_y, device_api);
gpu                66 python_bindings/python/Func_gpu.h     return that.gpu(block_x, block_y, block_z, thread_x, thread_y, thread_z, device_api);
gpu              2068 src/Func.cpp       Stage(func.definition(), name(), args(), func.schedule().storage_dims()).gpu(bx, tx, device_api);
gpu              2074 src/Func.cpp       Stage(func.definition(), name(), args(), func.schedule().storage_dims()).gpu(bx, by, tx, ty, device_api);
gpu              2080 src/Func.cpp       Stage(func.definition(), name(), args(), func.schedule().storage_dims()).gpu(bx, by, bz, tx, ty, tz, device_api);
gpu               215 src/Func.h         EXPORT Stage &gpu(VarOrRVar block_x, VarOrRVar thread_x, DeviceAPI device_api = DeviceAPI::Default_GPU);
gpu               216 src/Func.h         EXPORT Stage &gpu(VarOrRVar block_x, VarOrRVar block_y,
gpu               219 src/Func.h         EXPORT Stage &gpu(VarOrRVar block_x, VarOrRVar block_y, VarOrRVar block_z,
gpu              1466 src/Func.h         EXPORT Func &gpu(VarOrRVar block_x, VarOrRVar thread_x, DeviceAPI device_api = DeviceAPI::Default_GPU);
gpu              1467 src/Func.h         EXPORT Func &gpu(VarOrRVar block_x, VarOrRVar block_y,
gpu              1469 src/Func.h         EXPORT Func &gpu(VarOrRVar block_x, VarOrRVar block_y, VarOrRVar block_z,
gpu              1622 src/Generator.h     HALIDE_OUTPUT_FORWARD(gpu)
gpu               167 test/correctness/logical.cpp             Func gpu;
gpu               168 test/correctness/logical.cpp             gpu(x, y) = f(x, y);
gpu               171 test/correctness/logical.cpp             out(x, y) = {cast<uint32_t>(cpu(x, y)), cast<uint32_t>(gpu(x, y))};
gpu               174 test/correctness/logical.cpp             gpu.compute_root();
gpu               178 test/correctness/logical.cpp                 gpu.gpu_tile(x, y, xi, yi, 16, 16).vectorize(xi, 4);
gpu               180 test/correctness/logical.cpp                 gpu.hexagon().vectorize(x, 128);
gpu               183 test/correctness/logical.cpp                 gpu.vectorize(x, 8);
gpu                12 test/opengl/copy_to_host.cpp     Func gpu("gpu"), cpu("cpu");
gpu                16 test/opengl/copy_to_host.cpp     gpu(x, y, c) = cast<uint8_t>(select(c == 0, 10 * x + y,
gpu                19 test/opengl/copy_to_host.cpp     gpu.bound(c, 0, 3);
gpu                20 test/opengl/copy_to_host.cpp     gpu.glsl(x, y, c);
gpu                21 test/opengl/copy_to_host.cpp     gpu.compute_root();
gpu                24 test/opengl/copy_to_host.cpp     cpu(x, y, c) = gpu(x, y, c);
gpu                15 test/opengl/select.cpp     Func gpu("gpu"), cpu("cpu");
gpu                18 test/opengl/select.cpp     gpu(x, y, c) = cast<uint8_t>(select(c == 0, 128,
gpu                22 test/opengl/select.cpp     gpu.bound(c, 0, 4);
gpu                23 test/opengl/select.cpp     gpu.glsl(x, y, c);
gpu                24 test/opengl/select.cpp     gpu.compute_root();
gpu                26 test/opengl/select.cpp     cpu(x, y, c) = gpu(x, y, c);
gpu                52 test/opengl/select.cpp     Func gpu("gpu"), cpu("cpu");
gpu                60 test/opengl/select.cpp     gpu(x, y, c) = cast<uint8_t>(select(flag != 0, 128,
gpu                62 test/opengl/select.cpp     gpu.bound(c, 0, 4);
gpu                63 test/opengl/select.cpp     gpu.glsl(x, y, c);
gpu                64 test/opengl/select.cpp     gpu.compute_root();
gpu                67 test/opengl/select.cpp     cpu(x, y, c) = gpu(x, y, c);
gpu                89 test/opengl/select.cpp     Func gpu("gpu"), cpu("cpu");
gpu               106 test/opengl/select.cpp     gpu(x, y, c) = cast<uint8_t>(select(flag != 0, image(x, y, c),
gpu               108 test/opengl/select.cpp     gpu.bound(c, 0, 4);
gpu               109 test/opengl/select.cpp     gpu.glsl(x, y, c);
gpu               110 test/opengl/select.cpp     gpu.compute_root();
gpu               113 test/opengl/select.cpp     cpu(x, y, c) = gpu(x, y, c);
gpu                17 test/opengl/special_funcs.cpp     Func cpu("cpu"), gpu("gpu");
gpu                22 test/opengl/special_funcs.cpp     gpu(x, y, c) = e;
gpu                26 test/opengl/special_funcs.cpp     gpu.bound(c, 0, 3).glsl(x, y, c);
gpu                27 test/opengl/special_funcs.cpp     gpu.realize(gpu_result, gpu_target);