arborx / ArborX

Performance-portable geometric search library
BSD 3-Clause "New" or "Revised" License
184 stars 39 forks source link

EMST example #1189

Open xiaozxiong opened 5 days ago

xiaozxiong commented 5 days ago

Hi, I want to use the EMST program of ArborX (described in your ICPP paper) as a baseline, but I didn't find any existed example in the project. So I need to write my own example following your examples?

aprokop commented 5 days ago

@xiaozxiong So far, we have been using benchmarks/dbscan to run EMST. To run it, use

$ ./ArborX_Benchmark_DBSCAN.exe --algorithm mst --core-min-size 1 --binary --filename <file.arborx>

The file data format is described in the Data file format section of the README.md in that directory.

You are right, though, we should write an example. We would welcome your contribution if you end up writing your own before we do. It should be pretty straightforward, simply taking examples/dbscan and replacing DBSCAN calls with MST ones.