//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. //============================================================================ #include #include #include #include #include #include #include #include #include #include #include static const vtkm::cont::LogLevel CosmoLogLevel = vtkm::cont::LogLevel::UserFirst; void TestCosmoCenterFinder(const char* fileName) { std::cout << std::endl << "Testing Cosmology MBP Center Finder Filter on one halo " << fileName << std::endl; // Open the file for reading std::ifstream inFile(fileName); if (inFile.fail()) { std::cout << "File does not exist " << fileName << std::endl; return; } // Read in number of particles and locations vtkm::Id nParticles; inFile >> nParticles; float* xLocation = new float[static_cast(nParticles)]; float* yLocation = new float[static_cast(nParticles)]; float* zLocation = new float[static_cast(nParticles)]; std::cout << "Running MBP on " << nParticles << std::endl; for (vtkm::Id p = 0; p < nParticles; p++) { inFile >> xLocation[p] >> yLocation[p] >> zLocation[p]; } vtkm::cont::ArrayHandle xLocArray = vtkm::cont::make_ArrayHandle(xLocation, nParticles, vtkm::CopyFlag::Off); vtkm::cont::ArrayHandle yLocArray = vtkm::cont::make_ArrayHandle(yLocation, nParticles, vtkm::CopyFlag::Off); vtkm::cont::ArrayHandle zLocArray = vtkm::cont::make_ArrayHandle(zLocation, nParticles, vtkm::CopyFlag::Off); // Output MBP particleId pairs array vtkm::Pair nxnResult; vtkm::Pair mxnResult; const vtkm::Float32 particleMass = 1.08413e+09f; vtkm::worklet::CosmoTools cosmoTools; { VTKM_LOG_SCOPE(CosmoLogLevel, "Executing NxN"); cosmoTools.RunMBPCenterFinderNxN( xLocArray, yLocArray, zLocArray, nParticles, particleMass, nxnResult); VTKM_LOG_S(CosmoLogLevel, "NxN MPB = " << nxnResult.first << " potential = " << nxnResult.second); } { VTKM_LOG_SCOPE(CosmoLogLevel, "Executing MxN"); cosmoTools.RunMBPCenterFinderMxN( xLocArray, yLocArray, zLocArray, nParticles, particleMass, mxnResult); VTKM_LOG_S(CosmoLogLevel, "MxN MPB = " << mxnResult.first << " potential = " << mxnResult.second); } if (nxnResult.first == mxnResult.first) std::cout << "FOUND CORRECT PARTICLE " << mxnResult.first << " with potential " << nxnResult.second << std::endl; else std::cout << "ERROR DID NOT FIND SAME PARTICLE" << std::endl; xLocArray.ReleaseResources(); yLocArray.ReleaseResources(); zLocArray.ReleaseResources(); delete[] xLocation; delete[] yLocation; delete[] zLocation; } ///////////////////////////////////////////////////////////////////// // // Form of the input file in ASCII // Line 1: number of particles in the file // Line 2+: (float) xLoc (float) yLoc (float) zLoc // // CosmoCenterFinder data.cosmotools // ///////////////////////////////////////////////////////////////////// int main(int argc, char* argv[]) { vtkm::cont::SetLogLevelName(CosmoLogLevel, "Cosmo"); vtkm::cont::SetStderrLogLevel(CosmoLogLevel); auto opts = vtkm::cont::InitializeOptions::DefaultAnyDevice; vtkm::cont::InitializeResult config = vtkm::cont::Initialize(argc, argv, opts); if (argc < 2) { std::cout << "Usage: " << std::endl << "$ " << argv[0] << " " << std::endl; std::cout << config.Usage << std::endl; return 1; } #ifndef VTKM_ENABLE_LOGGING std::cout << "Warning: turn on VTKm_ENABLE_LOGGING CMake option to turn on timing." << std::endl; #endif TestCosmoCenterFinder(argv[1]); return 0; }