This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fix null pointer check in blas_memory_alloc
tags/v0.3.14^2
Alex Henrie
4 years ago
parent
0745ba43a4
commit
113840da12
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
driver/others/memory.c
+ 1
- 1
driver/others/memory.c
View File
@@ -1241,7 +1241,7 @@ UNLOCK_COMMAND(&alloc_lock);
func = &memoryalloc[0];
while ((func != NULL) && (map_address == (void *) -1)) {
while ((
*
func != NULL) && (map_address == (void *) -1)) {
map_address = (*func)((void *)base_address);
Write
Preview
Loading…
Cancel
Save