Skip to content

Commit 0c5de27

Browse files
committed
[init]
1 parent bccc931 commit 0c5de27

File tree

33 files changed

+464
-0
lines changed

33 files changed

+464
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#pragma once
2+
3+
#include <cstdint>
4+
#include <string>
5+
#include <tuple>
6+
#include <vector>
7+
8+
#include "task/include/task.hpp"
9+
10+
namespace guseva_a_matrix_sums {
11+
12+
constexpr double kEpsilon = 10e-12;
13+
using InType = std::tuple<uint32_t, uint32_t, std::vector<double>>;
14+
using OutType = std::vector<double>;
15+
using TestType = std::string;
16+
using BaseTask = ppc::task::Task<InType, OutType>;
17+
18+
} // namespace guseva_a_matrix_sums

tasks/guseva_a_matrix_sums/data/cases/test1.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

tasks/guseva_a_matrix_sums/data/cases/test10.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

tasks/guseva_a_matrix_sums/data/cases/test2.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

tasks/guseva_a_matrix_sums/data/cases/test3.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

tasks/guseva_a_matrix_sums/data/cases/test4.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

tasks/guseva_a_matrix_sums/data/cases/test5.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

tasks/guseva_a_matrix_sums/data/cases/test6.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

tasks/guseva_a_matrix_sums/data/cases/test7.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

tasks/guseva_a_matrix_sums/data/cases/test8.txt

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)