-
Notifications
You must be signed in to change notification settings - Fork 6
Pranay Code Review #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mundrapranay
wants to merge
35
commits into
master
Choose a base branch
from
pranayUDF2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
0e68809
Have algebra extension compiling and not segfaulting.
maureendaum 219ebef
Can load, encode, and save video.
maureendaum c57f8b6
wip
maureendaum 6fd1b89
wip: selection
maureendaum f4f3682
working python except map
maureendaum 988772c
wip: more python stuff
maureendaum 434bcc5
wip
maureendaum c53e035
pranay branch
2dede26
merged changes
mundrapranay 242a3f5
volume, options
mundrapranay 829f038
optionsmap
mundrapranay 8609a99
some progress on Catalog
mundrapranay 18f2a4c
remove build directory
mundrapranay 541ba35
python library working
mundrapranay d81b2d8
deleted extra comments
mundrapranay c7a0260
GOP done, deleted dashtranscoder.cc
mundrapranay d0c46aa
code cleanup done
mundrapranay ab30969
change in namespace
mundrapranay 7bcb70b
code cleanup
mundrapranay f76f67b
final changes
mundrapranay a46ab1e
PyOptions updated
mundrapranay 8d7db64
removed tmp
mundrapranay 693a786
Final cleanup
BrandonHaynes e8bd9c5
merge
mundrapranay 5ebe19d
pranayUDF2
mundrapranay ccf86c9
segmentation fault debugging
mundrapranay c0426df
python greyscale UDF
mundrapranay 244ed09
python lambda
mundrapranay 2c04eff
removed tmp folder
mundrapranay 207128c
Merge branch 'master' into pranayUDF2
BrandonHaynes 883bf72
PR changes done
mundrapranay 6702dcd
PR changes done
mundrapranay 3a70b76
PR done
mundrapranay 0dcec19
unit test pylightdb done
mundrapranay fe9f502
unit test pylightdb done
mundrapranay File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| # Find the Intel IPP (Integrated Performance Primitives) | ||
| # | ||
| # IPP_FOUND - System has IPP | ||
| # IPP_INCLUDE_DIRS - IPP include files directories | ||
| # IPP_LIBRARIES - The IPP libraries | ||
| # | ||
| # The environment variable IPPROOT is used to find the installation location. | ||
| # If the environment variable is not set we'll look for it in the default installation locations. | ||
| # | ||
| # Usage: | ||
| # | ||
| # find_package(IPP) | ||
| # if(IPP_FOUND) | ||
| # target_link_libraries(TARGET ${IPP_LIBRARIES}) | ||
| # endif() | ||
|
|
||
| find_path(IPP_ROOT_DIR | ||
| include/ipp.h | ||
| PATHS | ||
| $ENV{IPPROOT} | ||
| /opt/intel/compilers_and_libraries/linux/ipp | ||
| /opt/intel/compilers_and_libraries/mac/ipp | ||
| "C:/IntelSWTools/compilers_and_libraries/windows/ipp/" | ||
| "C:/Program Files (x86)/IntelSWTools/compilers_and_libraries/windows/ipp" | ||
| $ENV{HOME}/intel/ipp | ||
| $ENV{HOME}/miniconda3 | ||
| $ENV{USERPROFILE}/miniconda3/Library | ||
| "C:/Miniconda37-x64/Library" # Making AppVeyor happy | ||
| ) | ||
|
|
||
| find_path(IPP_INCLUDE_DIR | ||
| ipp.h | ||
| PATHS | ||
| ${IPP_ROOT_DIR}/include | ||
| ) | ||
|
|
||
| if(WIN32) | ||
| set(IPP_SEARCH_LIB ippcoremt.lib) | ||
| set(IPP_LIBS ippcoremt.lib ippsmt.lib ippdcmt.lib) | ||
| elseif(APPLE) | ||
| set(IPP_SEARCH_LIB libippcore.a) | ||
| set(IPP_LIBS libipps.a libippdc.a libippcore.a) | ||
| else() # Linux | ||
| set(IPP_SEARCH_LIB libippcore.so) | ||
| set(IPP_LIBS ipps ippdc ippcore) | ||
| endif() | ||
|
|
||
|
|
||
| find_path(IPP_LIB_SEARCHPATH | ||
| ${IPP_SEARCH_LIB} | ||
| PATHS | ||
| ${IPP_ROOT_DIR}/lib/intel64 | ||
| ${IPP_ROOT_DIR}/lib | ||
| ) | ||
|
|
||
| foreach(LIB ${IPP_LIBS}) | ||
| find_library(${LIB}_PATH ${LIB} PATHS ${IPP_LIB_SEARCHPATH}) | ||
| if(${LIB}_PATH) | ||
| set(IPP_LIBRARIES ${IPP_LIBRARIES} ${${LIB}_PATH}) | ||
| set(IPP_FOUND TRUE) | ||
| else() | ||
| # message(STATUS "Could not find ${LIB}: disabling IPP") | ||
| set(IPP_NOTFOUND TRUE) | ||
| endif() | ||
| endforeach() | ||
|
|
||
| if(IPP_FOUND AND NOT IPP_NOTFOUND) | ||
| set(IPP_INCLUDE_DIRS ${IPP_INCLUDE_DIR}) | ||
| include_directories(${IPP_INCLUDE_DIRS}) | ||
| message(STATUS "Found IPP libraries in: ${IPP_LIBRARIES}") | ||
| else() | ||
| message(STATUS "No IPP libraries found.") | ||
| set(IPP_FOUND FALSE) | ||
| endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.