Skip to content
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

Pranay Code Review #30

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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 Apr 19, 2019
219ebef
Can load, encode, and save video.
maureendaum Apr 25, 2019
c57f8b6
wip
maureendaum May 17, 2019
6fd1b89
wip: selection
maureendaum May 29, 2019
f4f3682
working python except map
maureendaum Jun 6, 2019
988772c
wip: more python stuff
maureendaum Jun 9, 2019
434bcc5
wip
maureendaum Jun 19, 2019
c53e035
pranay branch
Feb 9, 2020
2dede26
merged changes
mundrapranay Feb 9, 2020
242a3f5
volume, options
mundrapranay Mar 9, 2020
829f038
optionsmap
mundrapranay Mar 20, 2020
8609a99
some progress on Catalog
mundrapranay Apr 3, 2020
18f2a4c
remove build directory
mundrapranay Apr 5, 2020
541ba35
python library working
mundrapranay May 7, 2020
d81b2d8
deleted extra comments
mundrapranay May 7, 2020
c7a0260
GOP done, deleted dashtranscoder.cc
mundrapranay May 7, 2020
d0c46aa
code cleanup done
mundrapranay May 14, 2020
ab30969
change in namespace
mundrapranay May 14, 2020
7bcb70b
code cleanup
mundrapranay May 15, 2020
f76f67b
final changes
mundrapranay May 15, 2020
a46ab1e
PyOptions updated
mundrapranay May 16, 2020
8d7db64
removed tmp
mundrapranay May 16, 2020
693a786
Final cleanup
BrandonHaynes May 18, 2020
e8bd9c5
merge
mundrapranay Jun 4, 2020
5ebe19d
pranayUDF2
mundrapranay Jun 5, 2020
ccf86c9
segmentation fault debugging
mundrapranay Jun 15, 2020
c0426df
python greyscale UDF
mundrapranay Jun 18, 2020
244ed09
python lambda
mundrapranay Jun 18, 2020
2c04eff
removed tmp folder
mundrapranay Jun 18, 2020
207128c
Merge branch 'master' into pranayUDF2
BrandonHaynes Jun 29, 2020
883bf72
PR changes done
mundrapranay Jul 19, 2020
6702dcd
PR changes done
mundrapranay Jul 19, 2020
3a70b76
PR done
mundrapranay Aug 11, 2020
0dcec19
unit test pylightdb done
mundrapranay Nov 19, 2020
fe9f502
unit test pylightdb done
mundrapranay Nov 19, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions cmake/Modules/FindIPP.cmake
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 ippimt.lib ippccmt.lib ippcoremt.lib ippsmt.lib ippdcmt.lib)
elseif(APPLE)
set(IPP_SEARCH_LIB libippcore.a)
set(IPP_LIBS libippi.a libippcc.a libipps.a libippdc.a libippcore.a)
else() # Linux
set(IPP_SEARCH_LIB libippcore.so)
set(IPP_LIBS ippi ippcc 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()
1 change: 1 addition & 0 deletions plugins/yolo/darknet
Submodule darknet added at c72527
32 changes: 0 additions & 32 deletions python/CMakeLists.txt

This file was deleted.

31 changes: 0 additions & 31 deletions python/include/PythonGeometry.h

This file was deleted.

41 changes: 0 additions & 41 deletions python/include/PythonLightField.h

This file was deleted.

17 changes: 0 additions & 17 deletions python/include/PythonOptimizer.h

This file was deleted.

52 changes: 0 additions & 52 deletions python/include/PythonOptions.h

This file was deleted.

87 changes: 0 additions & 87 deletions python/src/Module.cc

This file was deleted.

Loading