File size: 273 Bytes
b28505d | 1 2 3 4 5 6 7 8 9 10 11 12 13 | // SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
#include "common.h"
#include <sstream>
using namespace std;
void print_tensor(const torch::Tensor &t) {
cout << t << endl;
}
|