klimi
Vishal
Somewhat related:
Does anyone joined dev.to community?
Any views?
Its kind of developers quora.
Anonymous
I have setup a local inference server for my deeplearning model and everytime I run an inference, the memory usage rises up and stays there. For eg if it's at 56.2% it rises to 56.8%.
Anonymous
And gradually increases
Anonymous
Has anyone experienced such issue?
Roxifλsz 🇱🇹
Anonymous
The thing is on the server end I'm only using standard vectors and no pointers are involved
Anonymous
Will there be a leak even if I use standard containers like vectors?
Anonymous
Anonymous
Anonymous
Anonymous
Answer pls
Mat
Mat
#howtoask
Булька
Dima
Ludovic 'Archivist'
Edgyboy has joined
Ludovic 'Archivist'
Sorry @Demon_Slayer2, it got out before I knew it
Anonymous
Anonymous
Any one have mastering c++ book pdf?
Harvey
✋
Anonymous
Yup
Ilya
Artöm
Artöm
Use valgrind to detect leaks
Artöm
Imo you dont have one if no pointers are involved in type of vector element and all bases and fields recursively
Artöm
Its still possible to make one but hard to accidentially
Artöm
Anonymous
Hi guys ..... I need a help in inverse kinematics .
Do anyone know ?
Francisco
Anonymous
Need a program of inverse kinematics in c/c++
Francisco
Francisco
Emm nope
Anonymous
what site for learning c ++ ???
Anonymous
Anonymous
Francisco
Roxifλsz 🇱🇹
Ilya
Anonymous
amazon.com
Dnt misguide beginners plz ...
Ilya
Ilya
Ritu Raj
hello guys! is there any group to ask doubt related to java?
Dima
What the… you again
Anonymous
Dima
/warn Ad
Anonymous
/warn Ad
Not my group .. he asked
Anonymous
Dima
Anonymous
how to post code doubt? mean using which site?
Maya...w
Hi
klimi
hi
Talula
Hi
Nameful
hi
Рома
#include <stdio.h>
#include <math.h>
void function(x);
int main()
{
int a, b ;
int y, h;
printf("Enter step: ");
scanf("%d", &h);
for (a = 0, b = 1; a <= b; a += h)
{
printf("%d", function(a));
}
return 0;
}
void function( x)
{
int x;
pow(x, 15)* sqrt(1 + 3 * pow(x, 8));
}
Рома
Help me plz !!!
Рома
Where a promlem in this programl ?
Anonymous
Hi
Anonymous
b = 1
Anonymous
if you want to step through to some number wouldn't it make sense to have b as a higher number?
Dima
Talula
#include <stdio.h>
#include <math.h>
void function(x);
int main()
{
int a, b ;
int y, h;
printf("Enter step: ");
scanf("%d", &h);
for (a = 0, b = 1; a <= b; a += h)
{
printf("%d", function(a));
}
return 0;
}
void function( x)
{
int x;
pow(x, 15)* sqrt(1 + 3 * pow(x, 8));
}
#include <stdio.h>
#include <math.h>
int function(int x);
int main()
{
int a, b ;
int y, h;
printf("Enter step: ");
scanf("%d", &h);
for (a = 0, b = 1; a <= b; a += h)
{
printf("%d", function(a));
}
return 0;
}
int function(int x)
{
return pow(x, 15)* sqrt(1 + 3 * pow(x, 8));
}
Anonymous
why is there "int x;" inside function?
Рома
I was given in the problem that a = 0 and b = 1
Talula
Corrected, your function should be int not void, your function should be declared with variable and type of variable... etc.
Anonymous
didn't even see the function declaration 😂
Anonymous
anyway compilation errors would have helped you
Anonymous
it's good to have a habit of trying to understand errors
Anonymous
Hi
Can you help me
Anonymous
[-2, 3, 5] 6
[-2, 3] 1
[-2, -4] -6
[-2, 5] 3
[1, -4] -3
[1, 5] 6
[3, 5] 8
WHITE DEVIL
Yes plz
Dima
what the hell
WHITE DEVIL
No it's heaven
Anonymous
subset problem