Monthly Archive for September, 2008

Romans 12:12

12. Be joyful in hope, patient in affliction, faithful in prayer.

2 Thessalonians 3:3

3But the Lord is faithful, and he will strengthen and protect you from the evil one.

Diet Coke + Mentos = ???

Proverbs 27:19

19 As water reflects a face,
so a man’s heart reflects the man.

Philippians 2:13

13for it is God who works in you to will and to act according to his good purpose.

Isaiah 30:18

18 Yet the LORD longs to be gracious to you; 
       he rises to show you compassion. 
       For the LORD is a God of justice. 
       Blessed are all who wait for him!

Jeremiah 17:7-8

 7 ”But blessed is the man who trusts in the LORD, 
       whose confidence is in him.

 8 He will be like a tree planted by the water 
       that sends out its roots by the stream. 
       It does not fear when heat comes; 
       its leaves are always green. 
       It has no worries in a year of drought 
       and never fails to bear fruit.”

NVIDIA CUDA

Serial

int main()
{
    float *A, *B, *C;
    for (int i = 0; i < sizeof(C); i++)
    {
        C[i] = A[i] + B[i];
    }
    return 0;
}

Parallel

__global__ void vecAdd(float* A, float* B, float* C)
{
int i = threadIdx.x;
C[i] = A[i] + B[i];
}
int main()
{
// Kernel invocation
vecAdd<<<1, N>>>(A, B, C);
}

Ephesians 5:20-21

20always giving thanks to God the Father for everything, in the name of our Lord Jesus Christ.

21Submit to one another out of reverence for Christ.

Psalm 37:3-6

3 Trust in the LORD and do good;
dwell in the land and enjoy safe pasture.

4 Delight yourself in the LORD
and he will give you the desires of your heart.

5 Commit your way to the LORD;
trust in him and he will do this:

6 He will make your righteousness shine like the dawn,
the justice of your cause like the noonday sun.