Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ name: Deploy slides
on:
push:
branches: [main]
pull_request:
workflow_dispatch:

concurrency:
Expand Down
4 changes: 2 additions & 2 deletions benches/read_geotiff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fn read_geotiff_gdal(fpath: &str, n_threads: usize) {
for b in 1..3 {
let band = ds.rasterband(b).unwrap();
let buffer: Buffer<u8> = band.read_band_as::<u8>().unwrap();
let mut array: Array2<_> = buffer.to_array().unwrap();
let array: Array2<_> = buffer.to_array().unwrap();

assert_eq!(array.shape(), [10980, 10980]);

Expand All @@ -88,7 +88,7 @@ fn read_geotiff_gdal(fpath: &str, n_threads: usize) {
let mut cuda_mem = cuda_stream.alloc_zeros::<u8>(3 * 10980 * 10980).unwrap();

cuda_stream
.memcpy_htod(array.as_slice_mut().unwrap(), &mut cuda_mem)
.memcpy_htod(array.as_slice().unwrap(), &mut cuda_mem)
.unwrap();
}
}
Expand Down
2 changes: 1 addition & 1 deletion slides/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ A tour of decoding TIFFs using multi-threaded, asynchronous and GPU-accelerated
FOSS4G 2025 talk
</h3>
<h4 text-md font-mono>
Wednesday 20 Nov 2025 <br> 16:30-16:55 (NZDT)
Thursday 20 Nov 2025 <br> 16:30-16:55 (NZDT)
</h4>
<h5 text-sm>
Wei Ji Leong <code text-primary> @weiji14</code>
Expand Down