Lines Matching refs:algorithm
120 class algorithm { class
163 algorithm(const std::string &alg_name, bool t) : name(alg_name), is_tiled(t) {} in algorithm() function in algorithm
264 class algorithm_crout : public algorithm {
266 algorithm_crout() : algorithm("crout_cholesky", true) {} in algorithm_crout()
287 class algorithm_dpotrf : public algorithm {
289 algorithm_dpotrf() : algorithm("dpotrf_cholesky", false) {} in algorithm_dpotrf()
464 class algorithm_join : public algorithm {
466 algorithm_join() : algorithm("data_join_cholesky", true) {} in algorithm_join()
540 class algorithm_depend : public algorithm {
542 algorithm_depend() : algorithm("depend_cholesky", true) {} in algorithm_depend()
674 typedef std::map<std::string, algorithm *> algmap_t; in main()
678 algmap.insert(std::pair<std::string, algorithm *>("dpotrf", new algorithm_dpotrf)); in main()
679 algmap.insert(std::pair<std::string, algorithm *>("crout", new algorithm_crout)); in main()
680 algmap.insert(std::pair<std::string, algorithm *>("depend", new algorithm_depend)); in main()
681 algmap.insert(std::pair<std::string, algorithm *>("join", new algorithm_join)); in main()
704 algorithm *const alg = i->second; in main()
712 algorithm *const alg = alg_iter->second; in main()