Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Assignment Parallel Graph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexandru BRĂSLAŞU
Assignment Parallel Graph
Commits
97c96bd1
Commit
97c96bd1
authored
1 year ago
by
Alexandru BRĂSLAŞU
Browse files
Options
Downloads
Patches
Plain Diff
Tema3SO
parent
a9cdc5d4
Branches
master
No related tags found
No related merge requests found
Pipeline
#44362
passed
1 year ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/os_threadpool.c
+0
-2
0 additions, 2 deletions
src/os_threadpool.c
src/parallel
+0
-0
0 additions, 0 deletions
src/parallel
src/parallel.c
+0
-1
0 additions, 1 deletion
src/parallel.c
src/serial
+0
-0
0 additions, 0 deletions
src/serial
with
0 additions
and
3 deletions
src/os_threadpool.c
+
0
−
2
View file @
97c96bd1
...
@@ -39,10 +39,8 @@ void enqueue_task(os_threadpool_t *tp, os_task_t *t)
...
@@ -39,10 +39,8 @@ void enqueue_task(os_threadpool_t *tp, os_task_t *t)
assert
(
t
!=
NULL
);
assert
(
t
!=
NULL
);
/* TODO: Enqueue task to the shared task queue. Use synchronization. */
/* TODO: Enqueue task to the shared task queue. Use synchronization. */
//pthread_mutex_lock(&tp->mutexCoada);
list_add_tail
(
&
tp
->
head
,
&
t
->
list
);
list_add_tail
(
&
tp
->
head
,
&
t
->
list
);
pthread_cond_broadcast
(
&
tp
->
Wait
);
pthread_cond_broadcast
(
&
tp
->
Wait
);
//pthread_mutex_unlock(&tp->mutexCoada);
}
}
/*
/*
...
...
This diff is collapsed.
Click to expand it.
src/parallel
deleted
100755 → 0
+
0
−
0
View file @
a9cdc5d4
File deleted
This diff is collapsed.
Click to expand it.
src/parallel.c
+
0
−
1
View file @
97c96bd1
...
@@ -41,7 +41,6 @@ static void process_node(unsigned int idx)
...
@@ -41,7 +41,6 @@ static void process_node(unsigned int idx)
sum
+=
graph
->
nodes
[
idx
]
->
info
;
sum
+=
graph
->
nodes
[
idx
]
->
info
;
graph
->
visited
[
idx
]
=
DONE
;
graph
->
visited
[
idx
]
=
DONE
;
for
(
unsigned
int
i
=
0
;
i
<
graph
->
nodes
[
idx
]
->
num_neighbours
;
++
i
)
{
for
(
unsigned
int
i
=
0
;
i
<
graph
->
nodes
[
idx
]
->
num_neighbours
;
++
i
)
{
if
(
graph
->
visited
[
graph
->
nodes
[
idx
]
->
neighbours
[
i
]]
==
NOT_VISITED
)
{
if
(
graph
->
visited
[
graph
->
nodes
[
idx
]
->
neighbours
[
i
]]
==
NOT_VISITED
)
{
graph
->
visited
[
graph
->
nodes
[
idx
]
->
neighbours
[
i
]]
=
PROCESSING
;
graph
->
visited
[
graph
->
nodes
[
idx
]
->
neighbours
[
i
]]
=
PROCESSING
;
os_arg_t
*
arg
=
malloc
(
sizeof
(
*
arg
));
os_arg_t
*
arg
=
malloc
(
sizeof
(
*
arg
));
...
...
This diff is collapsed.
Click to expand it.
src/serial
deleted
100755 → 0
+
0
−
0
View file @
a9cdc5d4
File deleted
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment