Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	
		Xu Ma
		
	commited on
		
		
					Commit 
							
							Β·
						
						1c3c0d9
	
1
								Parent(s):
							
							c55f85c
								
update
Browse filesThis view is limited to 50 files because it contains too many changes. Β 
							See raw diff
- DiffVG/CMakeLists.txt β CMakeLists.txt +0 -0
- DiffVG/aabb.h β aabb.h +0 -0
- app.py +1 -4
- DiffVG/atomic.cpp β atomic.cpp +0 -0
- DiffVG/atomic.h β atomic.h +0 -0
- DiffVG/cdf.h β cdf.h +0 -0
- {DiffVG/cmake β cmake}/FindTensorFlow.cmake +0 -0
- {DiffVG/cmake β cmake}/FindThrust.cmake +0 -0
- DiffVG/color.cpp β color.cpp +0 -0
- DiffVG/color.h β color.h +0 -0
- DiffVG/compute_distance.h β compute_distance.h +0 -0
- DiffVG/cuda_utils.h β cuda_utils.h +0 -0
- DiffVG/diffvg.cpp β diffvg.cpp +0 -0
- DiffVG/diffvg.h β diffvg.h +0 -0
- DiffVG/edge_query.h β edge_query.h +0 -0
- DiffVG/filter.h β filter.h +0 -0
- DiffVG/matrix.h β matrix.h +0 -0
- DiffVG/painterly_rendering.py β painterly_rendering.py +0 -0
- DiffVG/parallel.cpp β parallel.cpp +0 -0
- DiffVG/parallel.h β parallel.h +0 -0
- DiffVG/pcg.h β pcg.h +0 -0
- DiffVG/poetry.lock β poetry.lock +0 -0
- DiffVG/ptr.h β ptr.h +0 -0
- {DiffVG/pybind11 β pybind11}/.appveyor.yml +0 -0
- {DiffVG/pybind11 β pybind11}/.cmake-format.yaml +0 -0
- {DiffVG/pybind11 β pybind11}/.github/CONTRIBUTING.md +0 -0
- {DiffVG/pybind11 β pybind11}/.github/ISSUE_TEMPLATE/bug-report.md +0 -0
- {DiffVG/pybind11 β pybind11}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {DiffVG/pybind11 β pybind11}/.github/ISSUE_TEMPLATE/feature-request.md +0 -0
- {DiffVG/pybind11 β pybind11}/.github/ISSUE_TEMPLATE/question.md +0 -0
- {DiffVG/pybind11 β pybind11}/.github/workflows/ci.yml +0 -0
- {DiffVG/pybind11 β pybind11}/.github/workflows/configure.yml +0 -0
- {DiffVG/pybind11 β pybind11}/.github/workflows/format.yml +0 -0
- {DiffVG/pybind11 β pybind11}/.gitignore +0 -0
- {DiffVG/pybind11 β pybind11}/.gitmodules +0 -0
- {DiffVG/pybind11 β pybind11}/.pre-commit-config.yaml +0 -0
- {DiffVG/pybind11 β pybind11}/.readthedocs.yml +0 -0
- {DiffVG/pybind11 β pybind11}/CMakeLists.txt +0 -0
- {DiffVG/pybind11 β pybind11}/LICENSE +0 -0
- {DiffVG/pybind11 β pybind11}/MANIFEST.in +0 -0
- {DiffVG/pybind11 β pybind11}/README.md +0 -0
- {DiffVG/pybind11 β pybind11}/docs/Doxyfile +0 -0
- {DiffVG/pybind11 β pybind11}/docs/_static/theme_overrides.css +0 -0
- {DiffVG/pybind11 β pybind11}/docs/advanced/cast/chrono.rst +0 -0
- {DiffVG/pybind11 β pybind11}/docs/advanced/cast/custom.rst +0 -0
- {DiffVG/pybind11 β pybind11}/docs/advanced/cast/eigen.rst +0 -0
- {DiffVG/pybind11 β pybind11}/docs/advanced/cast/functional.rst +0 -0
- {DiffVG/pybind11 β pybind11}/docs/advanced/cast/index.rst +0 -0
- {DiffVG/pybind11 β pybind11}/docs/advanced/cast/overview.rst +0 -0
- {DiffVG/pybind11 β pybind11}/docs/advanced/cast/stl.rst +0 -0
    	
        DiffVG/CMakeLists.txt β CMakeLists.txt
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/aabb.h β aabb.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        app.py
    CHANGED
    
    | @@ -139,12 +139,9 @@ def run_cmd(command): | |
| 139 | 
             
            run_cmd("gcc --version")
         | 
| 140 | 
             
            run_cmd("pwd")
         | 
| 141 | 
             
            run_cmd("ls")
         | 
| 142 | 
            -
            run_cmd("cd DiffVG")
         | 
| 143 | 
            -
            run_cmd("pwd")
         | 
| 144 | 
            -
            run_cmd("ls")
         | 
| 145 | 
             
            run_cmd("git submodule update --init --recursive")
         | 
| 146 | 
             
            run_cmd("python setup.py install")
         | 
| 147 | 
            -
            run_cmd(" | 
| 148 |  | 
| 149 |  | 
| 150 |  | 
|  | |
| 139 | 
             
            run_cmd("gcc --version")
         | 
| 140 | 
             
            run_cmd("pwd")
         | 
| 141 | 
             
            run_cmd("ls")
         | 
|  | |
|  | |
|  | |
| 142 | 
             
            run_cmd("git submodule update --init --recursive")
         | 
| 143 | 
             
            run_cmd("python setup.py install")
         | 
| 144 | 
            +
            run_cmd("ls")
         | 
| 145 |  | 
| 146 |  | 
| 147 |  | 
    	
        DiffVG/atomic.cpp β atomic.cpp
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/atomic.h β atomic.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/cdf.h β cdf.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/cmake β cmake}/FindTensorFlow.cmake
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/cmake β cmake}/FindThrust.cmake
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/color.cpp β color.cpp
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/color.h β color.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/compute_distance.h β compute_distance.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/cuda_utils.h β cuda_utils.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/diffvg.cpp β diffvg.cpp
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/diffvg.h β diffvg.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/edge_query.h β edge_query.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/filter.h β filter.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/matrix.h β matrix.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/painterly_rendering.py β painterly_rendering.py
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/parallel.cpp β parallel.cpp
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/parallel.h β parallel.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/pcg.h β pcg.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/poetry.lock β poetry.lock
    RENAMED
    
    | 
            File without changes
         | 
    	
        DiffVG/ptr.h β ptr.h
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.appveyor.yml
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.cmake-format.yaml
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.github/CONTRIBUTING.md
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.github/ISSUE_TEMPLATE/bug-report.md
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.github/ISSUE_TEMPLATE/config.yml
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.github/ISSUE_TEMPLATE/feature-request.md
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.github/ISSUE_TEMPLATE/question.md
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.github/workflows/ci.yml
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.github/workflows/configure.yml
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.github/workflows/format.yml
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.gitignore
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.gitmodules
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.pre-commit-config.yaml
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/.readthedocs.yml
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/CMakeLists.txt
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/LICENSE
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/MANIFEST.in
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/README.md
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/Doxyfile
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/_static/theme_overrides.css
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/advanced/cast/chrono.rst
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/advanced/cast/custom.rst
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/advanced/cast/eigen.rst
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/advanced/cast/functional.rst
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/advanced/cast/index.rst
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/advanced/cast/overview.rst
    RENAMED
    
    | 
            File without changes
         | 
    	
        {DiffVG/pybind11 β pybind11}/docs/advanced/cast/stl.rst
    RENAMED
    
    | 
            File without changes
         | 
