1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
// SPDX-License-Identifier: Apache-2.0
// Test AxB_dot3_cuda kernels
// Using data generators and test classes, cover
// all NBUCKETS cases for the masked GEMM ( C, M, A, B) in GraphBLAS
// Tests Semirings, data types and a range of data input sizes and shapes
// Connects to the jitFactory for launches.
#include <cassert>
#include <cmath>
#include <random>
#include <algorithm>
#include <cstdint>
#include "problem_spec.hpp"
#include "jitTestFactory.hpp"
#include "../GB_cuda_buckets.h"
//Test instances and groupings
|