Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Aug 2020 21:42:19 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r544844 - head/misc/nn-insight/files
Message-ID:  <202008132142.07DLgJGb004952@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Thu Aug 13 21:42:19 2020
New Revision: 544844
URL: https://svnweb.freebsd.org/changeset/ports/544844

Log:
  misc/nn-insight: fix build with GCC and on head
  
  Add missing includes. This fixes build on stable/12 for powerpc64 (with GCC) and on head with powerpc64. Looking at https://www.freshports.org/misc/nn-insight/, it seems currently doesn't build even on head/amd64, so those includes should fix it.
  
  The original error that made me look into it was:
  /wrkdirs/usr/ports/misc/nn-insight/work/nn-insight-1.0.5/tensor.h:18:75: error: 'std::shared_ptr' has not been declared
     18 | bool readTensorDataAsJson(const char *fileName, const TensorShape &shape, std::shared_ptr<const float> &tensorData);
        |                                                                           ^~~
  
  MFH:		2020Q3 (fix build blanket)

Added:
  head/misc/nn-insight/files/
  head/misc/nn-insight/files/patch-3rdparty_tensorflow_tflite-reference-implementation.cpp   (contents, props changed)
  head/misc/nn-insight/files/patch-model-views_merge-dequantize-operators.h   (contents, props changed)
  head/misc/nn-insight/files/patch-tensor.h   (contents, props changed)

Added: head/misc/nn-insight/files/patch-3rdparty_tensorflow_tflite-reference-implementation.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/nn-insight/files/patch-3rdparty_tensorflow_tflite-reference-implementation.cpp	Thu Aug 13 21:42:19 2020	(r544844)
@@ -0,0 +1,10 @@
+--- 3rdparty/tensorflow/tflite-reference-implementation.cpp.orig	2020-08-13 21:04:29 UTC
++++ 3rdparty/tensorflow/tflite-reference-implementation.cpp
+@@ -7,6 +7,7 @@
+ #include <array>
+ #include <algorithm>
+ #include <cstdint>
++#include <cstring>
+ #include <vector>
+ #include <cmath>
+ 

Added: head/misc/nn-insight/files/patch-model-views_merge-dequantize-operators.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/nn-insight/files/patch-model-views_merge-dequantize-operators.h	Thu Aug 13 21:42:19 2020	(r544844)
@@ -0,0 +1,10 @@
+--- model-views/merge-dequantize-operators.h.orig	2020-08-13 20:56:51 UTC
++++ model-views/merge-dequantize-operators.h
+@@ -4,6 +4,7 @@
+ 
+ #include "../plugin-interface.h"
+ 
++#include <cassert>
+ #include <memory>
+ #include <vector>
+ 

Added: head/misc/nn-insight/files/patch-tensor.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/nn-insight/files/patch-tensor.h	Thu Aug 13 21:42:19 2020	(r544844)
@@ -0,0 +1,9 @@
+--- tensor.h.orig	2020-08-13 20:43:40 UTC
++++ tensor.h
+@@ -1,5 +1,6 @@
+ // Copyright (C) 2020 by Yuri Victorovich. All rights reserved.
+ 
++#include <memory>
+ #include <vector>
+ 
+ typedef std::vector<unsigned> TensorShape;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008132142.07DLgJGb004952>