Fixed missing std:: namespace #898
This commit is contained in:
@@ -45,10 +45,10 @@ static int comp_mat2_transpose(std::size_t Samples)
|
||||
packedMatType const Scale(0.01, 0.02, 0.03, 0.05);
|
||||
|
||||
std::vector<packedMatType> SISD;
|
||||
printf("- SISD: %d us\n", launch_mat_transpose<packedMatType>(SISD, Scale, Samples));
|
||||
std::printf("- SISD: %d us\n", launch_mat_transpose<packedMatType>(SISD, Scale, Samples));
|
||||
|
||||
std::vector<alignedMatType> SIMD;
|
||||
printf("- SIMD: %d us\n", launch_mat_transpose<alignedMatType>(SIMD, Scale, Samples));
|
||||
std::printf("- SIMD: %d us\n", launch_mat_transpose<alignedMatType>(SIMD, Scale, Samples));
|
||||
|
||||
for(std::size_t i = 0; i < Samples; ++i)
|
||||
{
|
||||
@@ -71,10 +71,10 @@ static int comp_mat3_transpose(std::size_t Samples)
|
||||
packedMatType const Scale(0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05, 0.01);
|
||||
|
||||
std::vector<packedMatType> SISD;
|
||||
printf("- SISD: %d us\n", launch_mat_transpose<packedMatType>(SISD, Scale, Samples));
|
||||
std::printf("- SISD: %d us\n", launch_mat_transpose<packedMatType>(SISD, Scale, Samples));
|
||||
|
||||
std::vector<alignedMatType> SIMD;
|
||||
printf("- SIMD: %d us\n", launch_mat_transpose<alignedMatType>(SIMD, Scale, Samples));
|
||||
std::printf("- SIMD: %d us\n", launch_mat_transpose<alignedMatType>(SIMD, Scale, Samples));
|
||||
|
||||
for(std::size_t i = 0; i < Samples; ++i)
|
||||
{
|
||||
@@ -97,10 +97,10 @@ static int comp_mat4_transpose(std::size_t Samples)
|
||||
packedMatType const Scale(0.01, 0.02, 0.05, 0.04, 0.02, 0.08, 0.05, 0.01, 0.08, 0.03, 0.05, 0.06, 0.02, 0.03, 0.07, 0.05);
|
||||
|
||||
std::vector<packedMatType> SISD;
|
||||
printf("- SISD: %d us\n", launch_mat_transpose<packedMatType>(SISD, Scale, Samples));
|
||||
std::printf("- SISD: %d us\n", launch_mat_transpose<packedMatType>(SISD, Scale, Samples));
|
||||
|
||||
std::vector<alignedMatType> SIMD;
|
||||
printf("- SIMD: %d us\n", launch_mat_transpose<alignedMatType>(SIMD, Scale, Samples));
|
||||
std::printf("- SIMD: %d us\n", launch_mat_transpose<alignedMatType>(SIMD, Scale, Samples));
|
||||
|
||||
for(std::size_t i = 0; i < Samples; ++i)
|
||||
{
|
||||
@@ -119,22 +119,22 @@ int main()
|
||||
|
||||
int Error = 0;
|
||||
|
||||
printf("glm::transpose(mat2):\n");
|
||||
std::printf("glm::transpose(mat2):\n");
|
||||
Error += comp_mat2_transpose<glm::mat2, glm::aligned_mat2>(Samples);
|
||||
|
||||
printf("glm::transpose(dmat2):\n");
|
||||
std::printf("glm::transpose(dmat2):\n");
|
||||
Error += comp_mat2_transpose<glm::dmat2, glm::aligned_dmat2>(Samples);
|
||||
|
||||
printf("glm::transpose(mat3):\n");
|
||||
std::printf("glm::transpose(mat3):\n");
|
||||
Error += comp_mat3_transpose<glm::mat3, glm::aligned_mat3>(Samples);
|
||||
|
||||
printf("glm::transpose(dmat3):\n");
|
||||
std::printf("glm::transpose(dmat3):\n");
|
||||
Error += comp_mat3_transpose<glm::dmat3, glm::aligned_dmat3>(Samples);
|
||||
|
||||
printf("glm::transpose(mat4):\n");
|
||||
std::printf("glm::transpose(mat4):\n");
|
||||
Error += comp_mat4_transpose<glm::mat4, glm::aligned_mat4>(Samples);
|
||||
|
||||
printf("glm::transpose(dmat4):\n");
|
||||
std::printf("glm::transpose(dmat4):\n");
|
||||
Error += comp_mat4_transpose<glm::dmat4, glm::aligned_dmat4>(Samples);
|
||||
|
||||
return Error;
|
||||
|
||||
Reference in New Issue
Block a user