Home
last modified time | relevance | path

Searched refs:Data (Results 1 – 20 of 20) sorted by relevance

/oneTBB/examples/concurrent_hash_map/count_strings/
H A Dcount_strings.cpp94 static MyString* Data; variable
100 oneapi::tbb::parallel_for(oneapi::tbb::blocked_range<MyString*>(Data, Data + N, 1000), in CountOccurrences()
223 Data[i] = GetLetters(type++, 0); in CreateData()
225 Data[i] += GetLetters(type++, 1); in CreateData()
226 Data[i] += GetLetters(type, 2); in CreateData()
228 MyString planet = Data[12]; in CreateData()
230 MyString helloworld = Data[0]; in CreateData()
232 helloworld += ", " + Data[1] + " " + Data[2] + " " + Data[3] + " " + Data[4] + " " + Data[5]; in CreateData()
263 Data = new MyString[N]; in main()
290 delete[] Data; in main()
/oneTBB/doc/main/tbb_userguide/
H A DCancellation_Without_An_Exception.rst24 vector<int> Data;
29 if( i<Data.size() ) {
30 ++Data[i];
42 Data.resize(1000);
H A DExceptions_and_Cancellation.rst47 vector<int> Data;
53 Data.at(i) += 1;
59 Data.resize(1000);
70 with only 1000 elements. Hence the expression ``Data.at(i)`` sometimes
H A DData_Flow_Graph.rst3 Data Flow Graph
28 Simple Data Flow Graph
37 The following code snippet shows an implementation of the **Simple Data
81 node F from **Simple Data Flow Graph** above is implemented as a loop
107 the **Simple Data Flow Graph** above, is to introduce an ``input_node``. An
142 need to create body that will act like the body of the loop in the **Simple Data Flow Graph**
190 **Simple Data Flow Graph** above. In this simple example, there is not
H A DCancellation_and_Nested_Parallelism.rst96 bool Data[1000][1000];
106 Data[i][j] = true;
123 Hence when the program completes, each row of ``Data`` may be different,
129 the inner loop. In that case, a row of ``Data`` might end up with both
H A Dconcurrent_hash_map.rst15 string occurs in the array ``Data``.
67 string Data[N];
76 parallel_for( blocked_range<string*>( Data, Data+N, 1000 ),
H A DFlow_Graph.rst3 Parallelizing Data Flow and Dependence Graphs
H A DGraph_Main_Categories.rst10 - **Data flow graphs.** In this type of graph, data is passed along the
H A DParallelizing_Flow_Graph.rst3 Parallelizing Data Flow and Dependency Graphs
37 **Simple Data Flow Graph**
H A Davoiding_data_races.rst3 Avoiding Data Races
H A DBandwidth_and_Cache_Affinity_os.rst75 Benefit of Affinity Determined by Relative Size of Data Set and Cache
H A DWorking_on_the_Assembly_Line_pipeline.rst8 manufacturing assembly line. Data flows through a series of pipeline
/oneTBB/test/tbb/
H A Dtest_intrusive_list.cpp39 int Data() const { return m_Data; } in Data() function
56 int Data() const { return m_Data; } in Data() function
89 REQUIRE_MESSAGE(it->Data() == i, "Unexpected node value while iterating forward"); in check_list_nodes()
97 REQUIRE_MESSAGE(it->Data() == i, "Unexpected node value while iterating backward"); in check_list_nodes()
H A Dtest_tbb_fork.cpp55 struct Data { struct
59 typedef tbb::concurrent_hash_map<DWORD, Data> TidTableType; argument
/oneTBB/doc/main/tbb_userguide/Migration_Guide/
H A DTask_API.rst206 std::shared_ptr<Data> m_shared_data;
220 // Assuming Data is defined.
221 std::shared_ptr<Data> data = std::make_shared<Data>(/*params*/);
238 std::shared_ptr<Data> m_shared_data;
252 // Assuming Data is defined.
253 std::shared_ptr<Data> data = std::make_shared<Data>(/*params*/);
/oneTBB/doc/main/intro/
H A Dtesting_approach.rst10 * Data race
H A DBenefits.rst54 Data-parallel programming scales well to larger numbers of processors
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DReference_Counting.rst141 A Mechanism for Supporting Dynamic-Sized, Lock-Free Data Structures"
H A DFenced_Data_Transfer.rst3 Fenced Data Transfer
H A DWavefront.rst106 Data dependences for longest common substring calculation.