move pipelines to pipe dir
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 18 May 2020 03:52:30 +0000 (04:52 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 18 May 2020 03:52:30 +0000 (04:52 +0100)
commit8bf8350732ef2d3a5a0e4cca20802b5e79f3a1cb
tree7bdedd03f539b93f5bf0f26414b5f4956fb12abb
parent6bf1388b6ba040252b31d288edc4ed090349986a
move pipelines to pipe dir
99 files changed:
src/soc/alu/alu_input_record.py [deleted file]
src/soc/alu/formal/.gitignore [deleted file]
src/soc/alu/formal/proof_input_stage.py [deleted file]
src/soc/alu/formal/proof_main_stage.py [deleted file]
src/soc/alu/formal/proof_output_stage.py [deleted file]
src/soc/alu/input_stage.py [deleted file]
src/soc/alu/main_stage.py [deleted file]
src/soc/alu/output_stage.py [deleted file]
src/soc/alu/pipe_data.py [deleted file]
src/soc/alu/pipeline.py [deleted file]
src/soc/alu/test/test_pipe_caller.py [deleted file]
src/soc/branch/__init__.py [deleted file]
src/soc/branch/br_input_record.py [deleted file]
src/soc/branch/formal/proof_input_stage.py [deleted file]
src/soc/branch/formal/proof_main_stage.py [deleted file]
src/soc/branch/input_stage.py [deleted file]
src/soc/branch/main_stage.py [deleted file]
src/soc/branch/pipe_data.py [deleted file]
src/soc/branch/pipeline.py [deleted file]
src/soc/branch/test/test_pipe_caller.py [deleted file]
src/soc/countzero/countzero.py [deleted file]
src/soc/countzero/test/test_countzero.py [deleted file]
src/soc/cr/main_stage.py [deleted file]
src/soc/cr/pipe_data.py [deleted file]
src/soc/cr/pipeline.py [deleted file]
src/soc/cr/test/test_pipe_caller.py [deleted file]
src/soc/logical/__init__.py [deleted file]
src/soc/logical/bperm.py [deleted file]
src/soc/logical/formal/.gitignore [deleted file]
src/soc/logical/formal/proof_bperm.py [deleted file]
src/soc/logical/formal/proof_input_stage.py [deleted file]
src/soc/logical/formal/proof_main_stage.py [deleted file]
src/soc/logical/input_stage.py [deleted file]
src/soc/logical/main_stage.py [deleted file]
src/soc/logical/pipe_data.py [deleted file]
src/soc/logical/pipeline.py [deleted file]
src/soc/logical/test/test_bperm.py [deleted file]
src/soc/logical/test/test_pipe_caller.py [deleted file]
src/soc/pipe/__init__.py [new file with mode: 0644]
src/soc/pipe/alu/alu_input_record.py [new file with mode: 0644]
src/soc/pipe/alu/formal/.gitignore [new file with mode: 0644]
src/soc/pipe/alu/formal/proof_input_stage.py [new file with mode: 0644]
src/soc/pipe/alu/formal/proof_main_stage.py [new file with mode: 0644]
src/soc/pipe/alu/formal/proof_output_stage.py [new file with mode: 0644]
src/soc/pipe/alu/input_stage.py [new file with mode: 0644]
src/soc/pipe/alu/main_stage.py [new file with mode: 0644]
src/soc/pipe/alu/output_stage.py [new file with mode: 0644]
src/soc/pipe/alu/pipe_data.py [new file with mode: 0644]
src/soc/pipe/alu/pipeline.py [new file with mode: 0644]
src/soc/pipe/alu/test/test_pipe_caller.py [new file with mode: 0644]
src/soc/pipe/branch/__init__.py [new file with mode: 0644]
src/soc/pipe/branch/br_input_record.py [new file with mode: 0644]
src/soc/pipe/branch/formal/proof_input_stage.py [new file with mode: 0644]
src/soc/pipe/branch/formal/proof_main_stage.py [new file with mode: 0644]
src/soc/pipe/branch/input_stage.py [new file with mode: 0644]
src/soc/pipe/branch/main_stage.py [new file with mode: 0644]
src/soc/pipe/branch/pipe_data.py [new file with mode: 0644]
src/soc/pipe/branch/pipeline.py [new file with mode: 0644]
src/soc/pipe/branch/test/test_pipe_caller.py [new file with mode: 0644]
src/soc/pipe/countzero/countzero.py [new file with mode: 0644]
src/soc/pipe/countzero/test/test_countzero.py [new file with mode: 0644]
src/soc/pipe/cr/main_stage.py [new file with mode: 0644]
src/soc/pipe/cr/pipe_data.py [new file with mode: 0644]
src/soc/pipe/cr/pipeline.py [new file with mode: 0644]
src/soc/pipe/cr/test/test_pipe_caller.py [new file with mode: 0644]
src/soc/pipe/logical/__init__.py [new file with mode: 0644]
src/soc/pipe/logical/bperm.py [new file with mode: 0644]
src/soc/pipe/logical/formal/.gitignore [new file with mode: 0644]
src/soc/pipe/logical/formal/proof_bperm.py [new file with mode: 0644]
src/soc/pipe/logical/formal/proof_input_stage.py [new file with mode: 0644]
src/soc/pipe/logical/formal/proof_main_stage.py [new file with mode: 0644]
src/soc/pipe/logical/input_stage.py [new file with mode: 0644]
src/soc/pipe/logical/main_stage.py [new file with mode: 0644]
src/soc/pipe/logical/pipe_data.py [new file with mode: 0644]
src/soc/pipe/logical/pipeline.py [new file with mode: 0644]
src/soc/pipe/logical/test/test_bperm.py [new file with mode: 0644]
src/soc/pipe/logical/test/test_pipe_caller.py [new file with mode: 0644]
src/soc/pipe/shift_rot/formal/.gitignore [new file with mode: 0644]
src/soc/pipe/shift_rot/formal/proof_main_stage.py [new file with mode: 0644]
src/soc/pipe/shift_rot/input_stage.py [new file with mode: 0644]
src/soc/pipe/shift_rot/main_stage.py [new file with mode: 0644]
src/soc/pipe/shift_rot/maskgen.py [new file with mode: 0644]
src/soc/pipe/shift_rot/pipe_data.py [new file with mode: 0644]
src/soc/pipe/shift_rot/pipeline.py [new file with mode: 0644]
src/soc/pipe/shift_rot/rotator.py [new file with mode: 0644]
src/soc/pipe/shift_rot/rotl.py [new file with mode: 0644]
src/soc/pipe/shift_rot/test/test_maskgen.py [new file with mode: 0644]
src/soc/pipe/shift_rot/test/test_pipe_caller.py [new file with mode: 0644]
src/soc/shift_rot/formal/.gitignore [deleted file]
src/soc/shift_rot/formal/proof_main_stage.py [deleted file]
src/soc/shift_rot/input_stage.py [deleted file]
src/soc/shift_rot/main_stage.py [deleted file]
src/soc/shift_rot/maskgen.py [deleted file]
src/soc/shift_rot/pipe_data.py [deleted file]
src/soc/shift_rot/pipeline.py [deleted file]
src/soc/shift_rot/rotator.py [deleted file]
src/soc/shift_rot/rotl.py [deleted file]
src/soc/shift_rot/test/test_maskgen.py [deleted file]
src/soc/shift_rot/test/test_pipe_caller.py [deleted file]