├── .gitignore ├── LICENSE ├── Mar_models ├── ._cp80.pdf ├── ._sourceF_4p5_2_high.bin ├── ._sourceF_4p5_2_high.mat ├── Inversion.jpg ├── Model_Cp_init_1D.bin ├── Model_Cp_true.bin ├── cp80.pdf ├── cp_init.mat ├── cp_init.pdf ├── cp_true.mat ├── sourceF_4p5_2_high.bin └── sourceF_4p5_2_high.mat ├── Ops └── FWI │ ├── FWI_ops.py │ ├── Src │ ├── Boundary.cu │ ├── Boundary.h │ ├── CMakeLists.txt │ ├── Cpml.cu │ ├── Cpml.h │ ├── Model.cu │ ├── Model.h │ ├── Parameter.cpp │ ├── Parameter.h │ ├── Src_Rec.cu │ ├── Src_Rec.h │ ├── Torch_Fwi.cpp │ ├── ac_adj_push.cu │ ├── ac_pressure.cu │ ├── ac_pressure_adj.cu │ ├── ac_velocity.cu │ ├── ac_velocity_adj.cu │ ├── compile.sh │ ├── el_stress.cu │ ├── el_stress_adj.cu │ ├── el_velocity.cu │ ├── el_velocity_adj.cu │ ├── image_vel.cu │ ├── image_vel_time.cu │ ├── libCUFD.cu │ ├── libCUFD.h │ ├── load_torch_fwi.py │ ├── main.cu │ ├── rapidjson │ │ ├── allocators.h │ │ ├── cursorstreamwrapper.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h │ ├── setup.py │ ├── test │ │ ├── test.sh │ │ └── testCUFD.cpp │ ├── utilities.cu │ └── utilities.h │ ├── fwi_util.jl │ └── fwi_utils.py ├── README.md └── src ├── main.py └── obj_wrapper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/LICENSE -------------------------------------------------------------------------------- /Mar_models/._cp80.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/._cp80.pdf -------------------------------------------------------------------------------- /Mar_models/._sourceF_4p5_2_high.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/._sourceF_4p5_2_high.bin -------------------------------------------------------------------------------- /Mar_models/._sourceF_4p5_2_high.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/._sourceF_4p5_2_high.mat -------------------------------------------------------------------------------- /Mar_models/Inversion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/Inversion.jpg -------------------------------------------------------------------------------- /Mar_models/Model_Cp_init_1D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/Model_Cp_init_1D.bin -------------------------------------------------------------------------------- /Mar_models/Model_Cp_true.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/Model_Cp_true.bin -------------------------------------------------------------------------------- /Mar_models/cp80.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/cp80.pdf -------------------------------------------------------------------------------- /Mar_models/cp_init.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/cp_init.mat -------------------------------------------------------------------------------- /Mar_models/cp_init.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/cp_init.pdf -------------------------------------------------------------------------------- /Mar_models/cp_true.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/cp_true.mat -------------------------------------------------------------------------------- /Mar_models/sourceF_4p5_2_high.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/sourceF_4p5_2_high.bin -------------------------------------------------------------------------------- /Mar_models/sourceF_4p5_2_high.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Mar_models/sourceF_4p5_2_high.mat -------------------------------------------------------------------------------- /Ops/FWI/FWI_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/FWI_ops.py -------------------------------------------------------------------------------- /Ops/FWI/Src/Boundary.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Boundary.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/Boundary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Boundary.h -------------------------------------------------------------------------------- /Ops/FWI/Src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/CMakeLists.txt -------------------------------------------------------------------------------- /Ops/FWI/Src/Cpml.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Cpml.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/Cpml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Cpml.h -------------------------------------------------------------------------------- /Ops/FWI/Src/Model.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Model.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Model.h -------------------------------------------------------------------------------- /Ops/FWI/Src/Parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Parameter.cpp -------------------------------------------------------------------------------- /Ops/FWI/Src/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Parameter.h -------------------------------------------------------------------------------- /Ops/FWI/Src/Src_Rec.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Src_Rec.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/Src_Rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Src_Rec.h -------------------------------------------------------------------------------- /Ops/FWI/Src/Torch_Fwi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/Torch_Fwi.cpp -------------------------------------------------------------------------------- /Ops/FWI/Src/ac_adj_push.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/ac_adj_push.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/ac_pressure.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/ac_pressure.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/ac_pressure_adj.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/ac_pressure_adj.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/ac_velocity.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/ac_velocity.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/ac_velocity_adj.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/ac_velocity_adj.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/compile.sh -------------------------------------------------------------------------------- /Ops/FWI/Src/el_stress.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/el_stress.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/el_stress_adj.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/el_stress_adj.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/el_velocity.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/el_velocity.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/el_velocity_adj.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/el_velocity_adj.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/image_vel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/image_vel.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/image_vel_time.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/image_vel_time.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/libCUFD.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/libCUFD.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/libCUFD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/libCUFD.h -------------------------------------------------------------------------------- /Ops/FWI/Src/load_torch_fwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/load_torch_fwi.py -------------------------------------------------------------------------------- /Ops/FWI/Src/main.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/main.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/allocators.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/document.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/encodings.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/error/en.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/error/error.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/fwd.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/memorystream.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/pointer.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/reader.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/schema.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/stream.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /Ops/FWI/Src/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/rapidjson/writer.h -------------------------------------------------------------------------------- /Ops/FWI/Src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/setup.py -------------------------------------------------------------------------------- /Ops/FWI/Src/test/test.sh: -------------------------------------------------------------------------------- 1 | CUDA_VISIBLE_DEVICES=0 ./build/main -------------------------------------------------------------------------------- /Ops/FWI/Src/test/testCUFD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/test/testCUFD.cpp -------------------------------------------------------------------------------- /Ops/FWI/Src/utilities.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/utilities.cu -------------------------------------------------------------------------------- /Ops/FWI/Src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/Src/utilities.h -------------------------------------------------------------------------------- /Ops/FWI/fwi_util.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/fwi_util.jl -------------------------------------------------------------------------------- /Ops/FWI/fwi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/Ops/FWI/fwi_utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/README.md -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/src/main.py -------------------------------------------------------------------------------- /src/obj_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidongzh/TorchFWI/HEAD/src/obj_wrapper.py --------------------------------------------------------------------------------