summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/opt
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-10-14 04:38:06 +0200
committerGitHub <noreply@github.com>2025-10-14 04:38:06 +0200
commit8939837390193e86c52299048caec9c7722178e6 (patch)
treedb923caaec3762fbb68290fd1ae94cb1465378e7 /dev/examples/opt
parent94799223495b9842bca67e1a6ecf611cec3ee771 (diff)
parenta786997f304745ce3766a82be06dc6a5d0c2f02c (diff)
Merge pull request #2 from snu-systems-corp/dev
feat: scl: major refactors and new version of SCL.
Diffstat (limited to 'dev/examples/opt')
-rw-r--r--dev/examples/opt/opt.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/examples/opt/opt.cc b/dev/examples/opt/opt.cc
index 8a74fa2..eb725c4 100644
--- a/dev/examples/opt/opt.cc
+++ b/dev/examples/opt/opt.cc
@@ -26,7 +26,7 @@ static auto do_some(const std::string recv_data, const std::string check_data)
const int hash_to_check = do_hash(check_data); /* here we assume this should match opt_hash */
const int opt_hash = do_hash(recv_data); /* we assume that the hash is correct */
- auto opt = ocl::opt(ocl::eval_eq(hash_to_check, opt_hash)); /* do the compute */
+ auto opt = scl::opt(scl::eval_eq(hash_to_check, opt_hash)); /* do the compute */
return opt;
}
@@ -35,7 +35,7 @@ int main(int argc, char** argv)
{
// ... let's assume we fetch data from network...
- ocl::io::println("Testing data...");
+ scl::io::println("Testing data...");
auto opt = do_some("Ohio", "Ohio");
opt.try_or_throw("Checksum failed, Ohio isn't Ohio!");