Home
last modified time | relevance | path

Searched refs:launch (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/external/libcxx/test/std/thread/futures/futures.overview/
Dlaunch.pass.cpp29 LIBCPP_STATIC_ASSERT(static_cast<int>(std::launch::any) == in main()
30 … (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), ""); in main()
32 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async | std::launch::deferred), ""); in main()
33 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), ""); in main()
34 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async ^ std::launch::deferred), ""); in main()
35 LIBCPP_STATIC_ASSERT(std::launch::deferred == ~std::launch::async, ""); in main()
36 std::launch x = std::launch::async; in main()
37 x &= std::launch::deferred; in main()
38 assert(x == std::launch(0)); in main()
39 x = std::launch::async; in main()
[all …]
/external/libcxx/test/std/thread/futures/futures.async/
Dasync.pass.cpp113 std::launch AnyPolicy = std::launch::async | std::launch::deferred; in main()
114 LIBCPP_ASSERT(AnyPolicy == std::launch::any); in main()
119 test<int>(checkInt, false, std::launch::async, f0); in main()
120 test<int>(checkInt, true, std::launch::deferred, f0); in main()
126 test<int&>(checkIntRef, false, std::launch::async, f1); in main()
127 test<int&>(checkIntRef, true, std::launch::deferred, f1); in main()
133 test<void>(checkVoid, false, std::launch::async, f2); in main()
134 test<void>(checkVoid, true, std::launch::deferred, f2); in main()
150 std::future<void> f = std::async(std::launch::deferred, f5, 3); in main()
Dasync_race.38682.pass.cpp47 std::future<int> fut = std::async(std::launch::async, worker, v); in main()
56 std::future<int&> fut = std::async(std::launch::async, worker_ref, std::ref(i)); in main()
65 std::future<void> fut = std::async(std::launch::async, worker_void); in main()
Dasync_race.pass.cpp52 std::future<int> f = std::async(std::launch::async, f_async); in test_each()
58 std::future<int> f = std::async(std::launch::deferred, f_deferred); in test_each()
/external/tensorflow/tensorflow/compiler/jit/
Dencapsulate_xla_computations_pass_test.cc64 Node* launch = scope.graph()->AddNode(def, &status); in MakeOuterGraph() local
66 TF_CHECK_OK(scope.DoShapeInference(launch)); in MakeOuterGraph()
67 scope.graph()->AddEdge(a.node(), 0, launch, 0); in MakeOuterGraph()
68 scope.graph()->AddEdge(b.node(), 0, launch, 1); in MakeOuterGraph()
69 scope.graph()->AddEdge(c.node(), 0, launch, 2); in MakeOuterGraph()
70 scope.graph()->AddEdge(d.node(), 0, launch, 3); in MakeOuterGraph()
71 scope.graph()->AddEdge(u.node(), 0, launch, 4); in MakeOuterGraph()
72 scope.graph()->AddEdge(v.node(), 0, launch, 5); in MakeOuterGraph()
73 scope.graph()->AddEdge(w.node(), 0, launch, 6); in MakeOuterGraph()
76 ops::XlaClusterOutput(scope.WithOpName("Out0"), Output(launch, 0)); in MakeOuterGraph()
[all …]
Dencapsulate_xla_computations_pass.cc256 for (Node* launch : launch_nodes) { in BuildXlaLaunchOps()
258 TF_RETURN_IF_ERROR(GetNodeAttr(launch->attrs(), "_variable_start_index", in BuildXlaLaunchOps()
262 TF_RETURN_IF_ERROR(launch->input_edges(&in_edges)); in BuildXlaLaunchOps()
268 VLOG(4) << "Launch node '" << launch->name() << "'" in BuildXlaLaunchOps()
272 std::vector<Node*> nodes_to_remove = {launch}; in BuildXlaLaunchOps()
279 AddControlInputs(*launch, &control_inputs); in BuildXlaLaunchOps()
295 const int num_outputs = launch->output_types().size(); in BuildXlaLaunchOps()
300 for (const Edge* le : launch->out_edges()) { in BuildXlaLaunchOps()
323 def.set_name(launch->name()); in BuildXlaLaunchOps()
324 MergeDebugInfo(NodeDebugInfo(launch->def()), &def); in BuildXlaLaunchOps()
[all …]
/external/parameter-framework/upstream/test/functional-tests-legacy/
DREADME.md12 We launch the functional tests with ACTCampaignEngine.py. This script launch every test present in …
18 Once the makefile is created, we can launch the test by running :
/external/tensorflow/tensorflow/core/kernels/
Dpooling_ops_3d.cc102 static void launch(OpKernelContext* context, const Tensor& tensor_in, in launch() function
117 static void launch(OpKernelContext* context, const Tensor& tensor_in, in launch() function
194 LaunchPoolingOp<Device, T, Type>::launch(context, tensor_in, window, stride, in Compute()
208 static void launch(OpKernelContext* context, const Tensor& tensor_in, in launch() function
368 LaunchMaxPooling3dGradOp<Device, T>::launch( in Compute()
382 static void launch(OpKernelContext* context, in launch() function
529 LaunchAvgPooling3dGradOp<Device, T>::launch( in Compute()
543 static void launch(OpKernelContext* context, const Pool3dParameters& params, in launch() function
705 LaunchMaxPooling3dGradGradOp<Device, T>::launch( in Compute()
745 static void launch(OpKernelContext* context, const Tensor& tensor_in, in launch() function
[all …]
Dlrn_op.cc80 void launch(OpKernelContext* context, OpKernel* kernel, const Tensor& in, in launch() function
174 void launch(OpKernelContext* context, OpKernel* kernel, const Tensor& in, in launch() function
276 launcher.launch(context, this, in, output); in Compute()
317 void launch(OpKernelContext* context, OpKernel* kernel, in launch() function
391 void launch(OpKernelContext* context, OpKernel* kernel, in launch() function
499 launcher.launch(context, this, in_grads, in_image, out_image, output); in Compute()
Dmaxpooling_op.cc794 LaunchMaxPoolingNoMask<Device, T>::launch(context, params, tensor_in, in Compute()
872 LaunchMaxPoolingNoMask<Device, T>::launch(context, params, tensor_in, in Compute()
888 static void launch(OpKernelContext* context, const PoolParameters& params, in launch() function
937 LaunchMaxPoolingWithArgmax<Device, T>::launch( in Compute()
958 static void launch(OpKernelContext* context, const PoolParameters& params, in launch() function
1050 LaunchMaxPoolingGradWithArgmax<Device, T>::launch( in Compute()
1104 LaunchMaxPoolingGradGradWithArgmax<Device, T>::launch( in Compute()
1181 LaunchMaxPoolingNoMask_NCHW_VECT_C<Device>::launch(context, params, in Compute()
1184 LaunchMaxPoolingNoMask<Device, T>::launch(context, params, tensor_in, in Compute()
1285 LaunchMaxPoolingNoMask<Device, T>::launch(context, params, tensor_in, in Compute()
[all …]
/external/libcxx/include/
Dfuture28 enum class launch
317 async(launch policy, F&& f, Args&&... args);
401 //enum class launch
402 _LIBCPP_DECLARE_STRONG_ENUM(launch)
408 _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(launch)
413 typedef underlying_type<launch>::type __launch_underlying_type;
420 launch
421 operator&(launch __x, launch __y)
423 return static_cast<launch>(static_cast<__launch_underlying_type>(__x) &
429 launch
[all …]
/external/objenesis/tck-android/src/main/java/org/objenesis/tck/android/
DTckInstrumentation.java43 launch(); in onCreate()
54 private void launch() throws IOException { in launch() method in TckInstrumentation
/external/libvpx/libvpx/vpx_util/
Dvpx_thread.c136 static void launch(VPxWorker *const worker) { in launch() function
164 launch, execute, end };
169 winterface->launch == NULL || winterface->execute == NULL || in vpx_set_worker_interface()
/external/tensorflow/tensorflow/contrib/fused_conv/kernels/
Dfused_conv2d_bias_activation_op.h39 void launch(OpKernelContext* ctx, bool cudnn_use_autotune,
53 void launch(OpKernelContext* ctx, bool cudnn_use_autotune,
/external/libaom/libaom/aom_util/
Daom_thread.c167 static void launch(AVxWorker *const worker) { in launch() function
195 launch, execute, end };
200 winterface->launch == NULL || winterface->execute == NULL || in aom_set_worker_interface()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DRawCommandLineLauncher.java101 launch(Map<String,? extends Connector.Argument> arguments) in launch() method in RawCommandLineLauncher
118 return launch(tokenizeCommand(command, quote.charAt(0)), in launch()
DSunCommandLineLauncher.java140 launch(Map<String,? extends Connector.Argument> arguments) in launch() method in SunCommandLineLauncher
223 vm = launch(tokenizeCommand(command, quote.charAt(0)), address, listenKey, in launch()
/external/libvpx/libvpx/test/
Dvp9_thread_test.cc39 vpx_get_worker_interface()->launch(worker); in Run()
92 vpx_get_worker_interface()->launch(&worker_); in TEST_P()
140 case 3: winterface.launch = NULL; break; in TEST()
/external/llvm/lib/Support/
DThreadPool.cpp142 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl()
147 auto Future = std::async(std::launch::deferred, std::move(Task), false).share(); in asyncImpl()
/external/guice/core/test/com/googlecode/guice/
DOSGiContainerTest.java30 import org.osgi.framework.launch.Framework;
31 import org.osgi.framework.launch.FrameworkFactory;
/external/u-boot/drivers/mtd/nand/
Dmxc_nand.h112 u32 launch; member
203 #define operation launch
/external/skqp/tools/lottiecap/
Dlottiecap.js137 browser = await puppeteer.launch({
142 browser = await puppeteer.launch();
/external/skia/tools/lottiecap/
Dlottiecap.js137 browser = await puppeteer.launch({
142 browser = await puppeteer.launch();
/external/webrtc/talk/app/webrtc/objc/
DREADME58 - To build & launch the sample app on OSX:
62 - To build & launch the sample app on the iOS simulator:
/external/cros/system_api/dbus/vm_applications/
Dapps.proto56 // Name of the VM to launch the terminal in.
59 // Name of the container within the VM to launch the terminal in.

12345678910>>...13