hkaiser changed the topic of #ste||ar to: STE||AR: Systems Technology, Emergent Parallelism, and Algorithm Research | stellar-group.org | HPX: A cure for performance impaired parallel applications | github.com/STEllAR-GROUP/hpx | This channel is logged: irclog.cct.lsu.edu
K-ballo has quit [Quit: K-ballo]
hkaiser has quit [Quit: Bye!]
<ms[m]>
gonidelis: one branch only, named release-1.8.X for this release
<ms[m]>
curious, how do you read 3 branches out of that?
<ms[m]>
btw, perfect example of "you should take notes or modify the release procedure so that it's clear for you"
K-ballo has joined #ste||ar
<dkaratza[m]>
@hkaiser: do we have a meeting scheduled for this week?
hkaiser has joined #ste||ar
satyam_nith has joined #ste||ar
satyam_nith has quit [Client Quit]
<hkaiser>
jbjnr[m]: yt?
<gnikunj[m]>
hkaiser: do we have a meeting today?
<hkaiser>
gnikunj[m]: no, srinivasyadav227 has examinations
<hkaiser>
gnikunj[m]: we'll meet next week
<gnikunj[m]>
Ahh gotcha
<gnikunj[m]>
Thanks!
<dkaratza[m]>
hkaiser: did we schedule a meeting for this week?
<hkaiser>
dkaratza[m]: good question ;-)
<dkaratza[m]>
hkaiser: i think we dont. which day/time fits you?
<hkaiser>
dkaratza[m]: can I get back to you on this (in a meeting right now)?
<dkaratza[m]>
hkaiser: sure
<hkaiser>
dkaratza[m]: tomorrow morning (CST) would work (9am?)
<dkaratza[m]>
hkaiser: yes, it's fine
K-ballo has quit [Quit: K-ballo]
K-ballo has joined #ste||ar
diehlpk_work has quit [Ping timeout: 240 seconds]
<hkaiser>
dkaratza[m]: ok, let's talk tomorrow, then
<hkaiser>
thanks
<gonidelis[m]>
hkaiser: dkaratza thanks guys :)
<gonidelis[m]>
;p
<dkaratza[m]>
<gonidelis[m]> "hkaiser: dkaratza thanks guys..." <- You have a lecture?
diehlpk_work has joined #ste||ar
<gonidelis[m]>
yeah it's fine... i was kidding
<dkaratza[m]>
gonidelis[m]: Hahaha sorry ((:
<zao>
There's someone asking a question on the C++ Slack about logging, by the way.
<zao>
hkaiser: ^
<gonidelis[m]>
zao: how do i reach it? through cpplang?
<zao>
#hpx on cpplang.slack.com, yes.
<zao>
No idea how one gets onboarded onto it these days, probably an auto-invite webpage
<gonidelis[m]>
yah got it
<gonidelis[m]>
thanks
aacirino has joined #ste||ar
aacirino has left #ste||ar [#ste||ar]
aacirino has joined #ste||ar
<aacirino>
Hello, I am trying to log my own messages in my first HPX application. I understand the logging configuration for the app, but I can't find a way to log my own messages, something like `my_logger_instance.write(my_msg)`.
<hkaiser>
aacirino: there is LAPP_ << ... (or LAPP_.format(...)) you can use for your purposes
<hkaiser>
the messages for that will be enabled using the --hpx:debug-app-log=<filename> command line option
<hkaiser>
cout is the default if no filename is given
<dkaratza[m]>
hkaiser: what happened to the `hpx::util::function_nonser` and `hpx::util::unique_function_nonser`? did we completely remove them ?
<hkaiser>
yes, I removed them
<hkaiser>
util::function_nonser is now hpx::function, and util::function will be hpx::distributed::function
<aacirino>
`LAPP_(info) << "HPX logging\n";` worked
<hkaiser>
aacirino: \o/
<aacirino>
Thanx
<aacirino>
Besides the new line character
mastdev has joined #ste||ar
<hkaiser>
aacirino: you don't need an explicit \n, it's added automatically
<aacirino>
What is the format string syntax? I could not find it, I found only the time formatting that is in the documentation
aacirino has quit [Ping timeout: 240 seconds]
aacirino has joined #ste||ar
<hkaiser>
aacirino: similar to std::format
<hkaiser>
e.g. .format("some string {}, more info", data), where '{}' serves as a placeholder for 'data'
<dkaratza[m]>
hkaiser: have you tried the new code from your PR for the cpp ref links?
<dkaratza[m]>
it gives an error for me
<dkaratza[m]>
` File "/hpx/build/docs/sphinx/extensions/sphinx-hpx.py", line 42, in role
<aacirino>
LAPP_(info).format("Will start the tests");
<aacirino>
The new line is being substituted for its escaping
<aacirino>
<info> Will start the tests\n <info> Is there a newline?\n
<aacirino>
LAPP_(info).format("Is there a newline?");
<aacirino>
has this output:
<dkaratza[m]>
hkaiser: ok it passed that part, so it looks like its solved...we ll be sure when its finished making the docs (whyich takes some time)
<gonidelis[m]>
When does the new documentation become available to the default https://hpx-docs.stellar-group.org/ webpage? Is it related with the release or anything?