esiaccel 0.1.5.dev347__cp310-cp310-win_amd64.whl → 0.2.3.dev80__cp310-cp310-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. esiaccel/CosimBackend.dll +0 -0
  2. esiaccel/CosimBackend.lib +0 -0
  3. esiaccel/CosimRpc.dll +0 -0
  4. esiaccel/CosimRpc.lib +0 -0
  5. esiaccel/ESICppRuntime.dll +0 -0
  6. esiaccel/ESICppRuntime.lib +0 -0
  7. esiaccel/EsiCosimDpiServer.dll +0 -0
  8. esiaccel/EsiCosimDpiServer.lib +0 -0
  9. esiaccel/MtiPli.dll +0 -0
  10. esiaccel/MtiPli.lib +0 -0
  11. esiaccel/__init__.py +12 -3
  12. esiaccel/abseil_dll.dll +0 -0
  13. esiaccel/accelerator.py +37 -5
  14. esiaccel/cares.dll +0 -0
  15. esiaccel/cmake/esiaccelConfig.cmake +34 -0
  16. esiaccel/codegen.py +3 -3
  17. esiaccel/cosim/Cosim_CycleCount.sv +84 -0
  18. esiaccel/cosim/simulator.py +1 -0
  19. esiaccel/esiCppAccel.cp312-win_amd64.pyd +0 -0
  20. esiaccel/esiquery.exe +0 -0
  21. esiaccel/include/esi/Accelerator.h +14 -17
  22. esiaccel/include/esi/CLI.h +5 -5
  23. esiaccel/include/esi/Common.h +6 -0
  24. esiaccel/include/esi/Context.h +17 -9
  25. esiaccel/include/esi/Design.h +9 -4
  26. esiaccel/include/esi/Ports.h +230 -23
  27. esiaccel/include/esi/Services.h +64 -18
  28. esiaccel/include/esi/Types.h +61 -0
  29. esiaccel/include/esi/backends/Cosim.h +5 -12
  30. esiaccel/include/esi/backends/RpcClient.h +97 -0
  31. esiaccel/include/esi/backends/RpcServer.h +21 -3
  32. esiaccel/libcrypto-3-x64.dll +0 -0
  33. esiaccel/libprotobuf.dll +0 -0
  34. esiaccel/libssl-3-x64.dll +0 -0
  35. esiaccel/re2.dll +0 -0
  36. esiaccel/types.py +6 -4
  37. esiaccel/zlib1.dll +0 -0
  38. {esiaccel-0.1.5.dev347.dist-info → esiaccel-0.2.3.dev80.dist-info}/METADATA +1 -1
  39. esiaccel-0.2.3.dev80.dist-info/RECORD +58 -0
  40. esiaccel/esiCppAccel.cp310-win_amd64.pyd +0 -0
  41. esiaccel-0.1.5.dev347.dist-info/RECORD +0 -54
  42. {esiaccel-0.1.5.dev347.dist-info → esiaccel-0.2.3.dev80.dist-info}/WHEEL +0 -0
  43. {esiaccel-0.1.5.dev347.dist-info → esiaccel-0.2.3.dev80.dist-info}/entry_points.txt +0 -0
  44. {esiaccel-0.1.5.dev347.dist-info → esiaccel-0.2.3.dev80.dist-info}/licenses/LICENSE +0 -0
  45. {esiaccel-0.1.5.dev347.dist-info → esiaccel-0.2.3.dev80.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,97 @@
1
+ //===- RpcClient.h - ESI Cosim RPC client -----------------------*- C++ -*-===//
2
+ //
3
+ // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
+ // See https://llvm.org/LICENSE.txt for license information.
5
+ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
+ //
7
+ //===----------------------------------------------------------------------===//
8
+ //
9
+ // This file contains the gRPC client implementation for ESI cosimulation.
10
+ // It wraps all gRPC/protobuf dependencies so they don't leak into other
11
+ // headers.
12
+ //
13
+ // DO NOT EDIT!
14
+ // This file is distributed as part of an ESI package. The source for this file
15
+ // should always be modified within CIRCT (lib/dialect/ESI/runtime/cpp).
16
+ //
17
+ //===----------------------------------------------------------------------===//
18
+
19
+ // NOLINTNEXTLINE(llvm-header-guard)
20
+ #ifndef ESI_BACKENDS_RPCCLIENT_H
21
+ #define ESI_BACKENDS_RPCCLIENT_H
22
+
23
+ #include "esi/Common.h"
24
+
25
+ #include <functional>
26
+ #include <memory>
27
+ #include <string>
28
+ #include <vector>
29
+
30
+ namespace esi {
31
+ namespace backends {
32
+ namespace cosim {
33
+
34
+ /// A gRPC client for communicating with the cosimulation server.
35
+ /// This class wraps all gRPC/protobuf dependencies.
36
+ class RpcClient {
37
+ public:
38
+ RpcClient(const std::string &hostname, uint16_t port);
39
+ ~RpcClient();
40
+
41
+ // Non-copyable.
42
+ RpcClient(const RpcClient &) = delete;
43
+ RpcClient &operator=(const RpcClient &) = delete;
44
+
45
+ /// Get the ESI version from the manifest.
46
+ uint32_t getEsiVersion() const;
47
+
48
+ /// Get the compressed manifest from the server.
49
+ std::vector<uint8_t> getCompressedManifest() const;
50
+
51
+ /// Channel direction as reported by the server.
52
+ enum class ChannelDirection { ToServer, ToClient };
53
+
54
+ /// Description of a channel from the server.
55
+ struct ChannelDesc {
56
+ std::string name;
57
+ std::string type;
58
+ ChannelDirection dir;
59
+ };
60
+
61
+ /// Get the channel description for a channel name.
62
+ /// Returns true if the channel was found.
63
+ bool getChannelDesc(const std::string &channelName, ChannelDesc &desc) const;
64
+
65
+ /// List all channels available on the server.
66
+ std::vector<ChannelDesc> listChannels() const;
67
+
68
+ /// Send a message to a server-bound channel.
69
+ void writeToServer(const std::string &channelName, const MessageData &data);
70
+
71
+ /// Callback type for receiving messages from a client-bound channel.
72
+ /// Return true if the message was consumed, false to retry.
73
+ using ReadCallback = std::function<bool(const MessageData &)>;
74
+
75
+ /// Abstract handle for a read channel connection.
76
+ /// Destructor disconnects from the channel.
77
+ class ReadChannelConnection {
78
+ public:
79
+ virtual ~ReadChannelConnection() = default;
80
+ virtual void disconnect() = 0;
81
+ };
82
+
83
+ /// Connect to a client-bound channel and receive messages via callback.
84
+ /// Returns a handle that disconnects when destroyed.
85
+ std::unique_ptr<ReadChannelConnection>
86
+ connectClientReceiver(const std::string &channelName, ReadCallback callback);
87
+
88
+ private:
89
+ class Impl;
90
+ std::unique_ptr<Impl> impl;
91
+ };
92
+
93
+ } // namespace cosim
94
+ } // namespace backends
95
+ } // namespace esi
96
+
97
+ #endif // ESI_BACKENDS_RPCCLIENT_H
@@ -16,6 +16,7 @@
16
16
  #ifndef ESI_COSIM_RPCSERVER_H
17
17
  #define ESI_COSIM_RPCSERVER_H
18
18
 
19
+ #include "esi/Context.h"
19
20
  #include "esi/Ports.h"
20
21
 
21
22
  namespace esi {
@@ -24,8 +25,12 @@ namespace cosim {
24
25
  /// TODO: make this a proper backend (as much as possible).
25
26
  class RpcServer {
26
27
  public:
28
+ RpcServer(Context &ctxt);
27
29
  ~RpcServer();
28
30
 
31
+ /// Get the context.
32
+ Context &getContext() { return ctxt; }
33
+
29
34
  /// Set the manifest and version. There is a race condition here in that the
30
35
  /// RPC server can be started and a connection from the client could happen
31
36
  /// before the manifest is set. TODO: rework the DPI API to require that the
@@ -39,14 +44,27 @@ public:
39
44
  WriteChannelPort &registerWritePort(const std::string &name,
40
45
  const std::string &type);
41
46
 
42
- void stop();
43
- void run(int port);
47
+ // Stop the RPC server.
48
+ // If a millisecond timeout is provided, will forcefully stop the underlying
49
+ // RPC server once the timeout expires. If not, the RPC server will attempt to
50
+ // stop gracefully, implying that any outstanding RPC calls must be served
51
+ // before the server actually stops (see grpc::ServerInterface::Shutdown for
52
+ // more).
53
+ void stop(uint32_t timeoutMS = 0);
54
+
55
+ // Start the RPC server. If no port is provided, the RPC server will let the
56
+ // OS pick a port.
57
+ void run(int port = -1);
58
+
59
+ // Return which port the RPC server is executing on.
60
+ int getPort();
44
61
 
45
62
  /// Hide the implementation details from this header file.
46
63
  class Impl;
47
64
 
48
65
  private:
49
- Impl *impl = nullptr;
66
+ Context &ctxt;
67
+ std::unique_ptr<Impl> impl;
50
68
  };
51
69
 
52
70
  } // namespace cosim
Binary file
esiaccel/libprotobuf.dll CHANGED
Binary file
esiaccel/libssl-3-x64.dll CHANGED
Binary file
esiaccel/re2.dll CHANGED
Binary file
esiaccel/types.py CHANGED
@@ -342,7 +342,9 @@ class Port:
342
342
  if not supports_host:
343
343
  raise TypeError(f"unsupported type: {reason}")
344
344
 
345
- self.cpp_port.connect(buffer_size)
345
+ opts = cpp.ConnectOptions()
346
+ opts.buffer_size = buffer_size
347
+ self.cpp_port.connect(opts)
346
348
  return self
347
349
 
348
350
  def disconnect(self):
@@ -408,8 +410,8 @@ class BundlePort:
408
410
  return super().__new__(CallbackPort)
409
411
  if isinstance(cpp_port, cpp.MMIORegion):
410
412
  return super().__new__(MMIORegion)
411
- if isinstance(cpp_port, cpp.Telemetry):
412
- return super().__new__(TelemetryPort)
413
+ if isinstance(cpp_port, cpp.Metric):
414
+ return super().__new__(MetricPort)
413
415
  return super().__new__(cls)
414
416
 
415
417
  def __init__(self, owner: HWModule, cpp_port: cpp.BundlePort):
@@ -545,7 +547,7 @@ class CallbackPort(BundlePort):
545
547
  self.connected = True
546
548
 
547
549
 
548
- class TelemetryPort(BundlePort):
550
+ class MetricPort(BundlePort):
549
551
  """Telemetry ports report an individual piece of information from the
550
552
  acceelerator. The method of accessing telemetry will likely change in the
551
553
  future."""
esiaccel/zlib1.dll CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: esiaccel
3
- Version: 0.1.5.dev347
3
+ Version: 0.2.3.dev80
4
4
  Summary: ESI accelerators runtime
5
5
  Author-email: John Demme <John.Demme@microsoft.com>
6
6
  License: ==============================================================================
@@ -0,0 +1,58 @@
1
+ esiaccel/CosimBackend.dll,sha256=WsYLiG3cIttOml8ny9Njfr8lgLfO2UspeNb29z7Z-9M,634368
2
+ esiaccel/CosimBackend.lib,sha256=RjY1bWCyxi-PtXFiDHtunmM0UT8vpl_m-CNCCaMqdnc,2180566
3
+ esiaccel/CosimRpc.dll,sha256=44uYkGUJjNF5Wws-yBw2KuKT2MzdlzZpdT0x7tMHI5M,7044096
4
+ esiaccel/CosimRpc.lib,sha256=FZt1QsMRNtDjWVZp_5aqTq5DVBo8BodUy-Zc0_KAXkU,3615226
5
+ esiaccel/ESICppRuntime.dll,sha256=AfWGIMvdzj1qMkBx2q3f_qYLbK0ww8QbQEOBiPnblps,4495360
6
+ esiaccel/ESICppRuntime.lib,sha256=Autv7_UNy9EMWCueiEVkjxY72PagFVz2u3KvLV8LCFk,16556242
7
+ esiaccel/EsiCosimDpiServer.dll,sha256=9ns3g54_CdOTdw6_j79xrGjSgXDdT3dCV1EA_vDUmcU,512512
8
+ esiaccel/EsiCosimDpiServer.lib,sha256=ZNNl0AsT-O4QXrzFNGsY7vVElYEywOL6aiOy7nCJOpc,1153606
9
+ esiaccel/MtiPli.dll,sha256=c_RmAWqfQmNCx1eaSudLaEXPdytRIbLVLFNmptcb8UM,14848
10
+ esiaccel/MtiPli.lib,sha256=7r8KNdR2EpFEAZ-GBIlnwV3b4_bpjg5PUpQ9vYqOJww,14570
11
+ esiaccel/__init__.py,sha256=kQGIPdInC-YoumE8uVqmfAckqcTGmCnMJGtWZzCc2lE,1270
12
+ esiaccel/abseil_dll.dll,sha256=z6OYn9rgcn_NaYIG19JtNGkGJXnyECwTJ8nVW4t4PvY,2002432
13
+ esiaccel/accelerator.py,sha256=wv1EXaRZlXtyHeBA-_uKycBjn-lVxj83AYeIVlutVRs,4466
14
+ esiaccel/cares.dll,sha256=Gklp21IWShGybAbFhUs6bJecDG7rBS3jZrllG7lWmJw,200704
15
+ esiaccel/codegen.py,sha256=QaBNVwcsCyYWmhEesQsXp72rV-8dVC9G33K4YR6PxRo,6577
16
+ esiaccel/esi-cosim.py,sha256=P7n3SBgKPnXynwghY5zK1FmpqZkbC_YxfVIvNNQNl6Q,3817
17
+ esiaccel/esiCppAccel.cp312-win_amd64.pyd,sha256=E43DpY0FDzaycz2oz-vaeAGMOLCxbHbXdANOiYfGLYw,290304
18
+ esiaccel/esiquery.exe,sha256=rpYtOIN18TRmGNFQdQ4iWquqG9uh8PvX7Os8FwDW8Cg,475136
19
+ esiaccel/libcrypto-3-x64.dll,sha256=3G4D_aIsqXmeDjc8ZyGVTvdtPiA1YKA3egorXgALnWQ,5326336
20
+ esiaccel/libprotobuf.dll,sha256=-vtzg2rh6IGAJpWOyhzOpXc9Nfcx9MyvouKBs49hlBw,12089344
21
+ esiaccel/libssl-3-x64.dll,sha256=TvNJRc86Hj67LBHgNxBOqzcKay2miFCtQMW6NvV18XQ,871424
22
+ esiaccel/re2.dll,sha256=mPqwlW4I_3e4cgOaBVObJOgu-stfJyXKinAmJJcl6js,1214464
23
+ esiaccel/types.py,sha256=pTF2J5cSlyrpq6pBZ9Xd9--NuIOpR4JkEYNicf6ffkM,19097
24
+ esiaccel/utils.py,sha256=q-8fmgJ9tUvmBsIvqZiZ7u845IJhOjvjYTQLhhrNYl0,1515
25
+ esiaccel/zlib1.dll,sha256=GFQuaEY4-GUYg4WtQlHOen8j4ODxUlfITZ48VkPPhDE,90112
26
+ esiaccel/cmake/esiaccelConfig.cmake,sha256=BEnPuGZ7OqOZuTuXl3wjRraw93nf-UznJT-EChKmu9c,1782
27
+ esiaccel/cosim/Cosim_CycleCount.sv,sha256=dcxn_9l469IJvZvW4onObmgRMQyeG_zhTu11QtD-0zs,2385
28
+ esiaccel/cosim/Cosim_DpiPkg.sv,sha256=9qGn1VyAVrzBP5At1thV6xrovg0WghICD01Zz9J221E,3458
29
+ esiaccel/cosim/Cosim_Endpoint.sv,sha256=-XXrGvvk6hdiZ-Ex6_QtdKXXUwKJLKSvpTUK3o0gPZ8,7589
30
+ esiaccel/cosim/Cosim_Manifest.sv,sha256=vl9b6XieEkP880IBw1ferekBnDJwFanZZggJJGertXM,1123
31
+ esiaccel/cosim/driver.cpp,sha256=Lvmo03pzzhoswdxAtdXAm-oU6UkfTyl1LgoCpyDzLhY,3842
32
+ esiaccel/cosim/driver.sv,sha256=LAkFEXTwX3KKwZLSzYZFwMPWxZwVStuhUsfecHHpGzU,1890
33
+ esiaccel/cosim/questa.py,sha256=2xALwRzsOFZ1_xk3f2d849GMvGspNCK4XL8zVDBjXlA,4626
34
+ esiaccel/cosim/simulator.py,sha256=oTZCUrDT_YCR5bMzgtlQ39JLSlxCmYt_tpTGQ2PLRxU,13994
35
+ esiaccel/cosim/verilator.py,sha256=dwiEkKOem5OKPV9AK6O1ohr22MTsyDxBVnriDRFoVa8,2877
36
+ esiaccel/include/esi/Accelerator.h,sha256=f-fbqWMUKgNISuf9T7UDN36xMqYm0qHBLAzASFGpieo,9318
37
+ esiaccel/include/esi/CLI.h,sha256=LLLWpvE7JDuwNyuCSjLj3sGsAh1BenOh1W7MbhAf3WQ,2619
38
+ esiaccel/include/esi/Common.h,sha256=7bXy9bRt4C7oeO6SBm8BneujbL17fbPM6K7YMqazvLE,6155
39
+ esiaccel/include/esi/Context.h,sha256=Bd698megdjlsmGsKQjsw3JE9vTuKLQjIrn-DrWRpkFw,2686
40
+ esiaccel/include/esi/Design.h,sha256=KbynfLZ6Y2PXomq-c9IKXRZGmeHFTObWTfvjL8G6X-c,5040
41
+ esiaccel/include/esi/Engines.h,sha256=bbGbhXjYMpIpXh_DR0OS57zyGQUIDXh_S7xHX3su0Y0,4831
42
+ esiaccel/include/esi/Logging.h,sha256=sHqMcpp0lNIHkIEyvSm-BBWx4zXXh6NOATCgZpgzYI4,8944
43
+ esiaccel/include/esi/Manifest.h,sha256=ZdIu_vXXLS4bwOoISFo-sFjzvB9x5ddYmNmaknyF0ds,2110
44
+ esiaccel/include/esi/Ports.h,sha256=FQn7ckL_biFBKRSe_lMinW-24a3PzmW0TSorHxI8Ts0,19351
45
+ esiaccel/include/esi/Services.h,sha256=MERULjcAaS5A1bCu7YXOU09ZfqyatQUvOt5xpwrYNqE,17165
46
+ esiaccel/include/esi/Types.h,sha256=SyTU3YteKWQJ7HuUK4G6f1sQDBJ7nhHh-r1OMpH4MVY,11416
47
+ esiaccel/include/esi/Utils.h,sha256=KPd75GajIFeTBVJocXBjwsJqhbZg-ShWZCIe3oQdBss,3061
48
+ esiaccel/include/esi/Values.h,sha256=1xXxNV2oUr84At3Y7aXBqbiPZxyJXeUbhycl0O0fUtk,11074
49
+ esiaccel/include/esi/backends/Cosim.h,sha256=Y8s2krmqNqrNJT5qG9Wy9oQzgRpIt3dhcAjYjOXHmTA,2575
50
+ esiaccel/include/esi/backends/RpcClient.h,sha256=ZMPJkZTSedcyPEfbNGkzMUcb_C0SjCNbueDmH9C2SX8,3168
51
+ esiaccel/include/esi/backends/RpcServer.h,sha256=aWCtNxUT9PB3dibEgcMWDudpJ5VX_UCahld_lxoD5dU,2570
52
+ esiaccel/include/esi/backends/Trace.h,sha256=kx4wwLH3a0ndmRUdaDyYGZ1SP83zlpFrk30Nw8ZrJJA,3286
53
+ esiaccel-0.2.3.dev80.dist-info/licenses/LICENSE,sha256=vtnVnB8_lN1yPYcA5MeT56R8UsQtBhyzZLBvu_KMf7I,13468
54
+ esiaccel-0.2.3.dev80.dist-info/METADATA,sha256=JIGvHzZLELkjO_NpWJazh_OsHrNNj-IzbFe3rUJxx1s,16147
55
+ esiaccel-0.2.3.dev80.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
56
+ esiaccel-0.2.3.dev80.dist-info/entry_points.txt,sha256=_CuNLV0fyTURxRREFwpzGycifZW_-7-MyuJNEwKK9J8,137
57
+ esiaccel-0.2.3.dev80.dist-info/top_level.txt,sha256=fYWTWMDK4PDu4ePQ9NtcFHas2k8-d1kWhTs2avPpgB4,9
58
+ esiaccel-0.2.3.dev80.dist-info/RECORD,,
Binary file
@@ -1,54 +0,0 @@
1
- esiaccel/CosimBackend.dll,sha256=XxwQPKq2YuIDKizwwXpEGsYZHHMu1sHRYs2HyNI1TH8,7190016
2
- esiaccel/CosimBackend.lib,sha256=irceROhM9oK4xu-X5-asnfJAPaYHTQYwYIwufUEbCcc,4903722
3
- esiaccel/ESICppRuntime.dll,sha256=kgTP4vT8A1QtE78EJLZFC6-sCbS7iTQLJ58wzbdF9bk,4123648
4
- esiaccel/ESICppRuntime.lib,sha256=7qN5KCd_vBEiRxVfIj4-dJnz8TDYqKSa2YzVZOzPUkw,15239210
5
- esiaccel/EsiCosimDpiServer.dll,sha256=rYEtdjYdbNMJAOlOpbEIXj3xYX6cqZ0v9nfnv7IowI4,160768
6
- esiaccel/EsiCosimDpiServer.lib,sha256=xMj0Uiih7BfmPUCe5NrAK8gEAqoi0ITH7P4Fp0IvaHo,606000
7
- esiaccel/MtiPli.dll,sha256=ni-lZprxodSUn_6kJ8B2K7sNFDh43LB9_lqJPAB_mv8,14848
8
- esiaccel/MtiPli.lib,sha256=FFIpVSxcH4VGNnMeZXAHcYQxTCBAeElN3YXLk1yrSTM,14570
9
- esiaccel/__init__.py,sha256=65xXWHwJwRePsyhWk837NpzuN0qsNhoAX29TOiSYKGc,905
10
- esiaccel/abseil_dll.dll,sha256=6QM0vAVS8Qc6P8FLu6oeT23DmaWWXeiXj4KQKR29ZoE,1584640
11
- esiaccel/accelerator.py,sha256=BcXPsUqcQV3YsVVyYbz9P6JnZLlcnuageFbJwID9_3s,3318
12
- esiaccel/cares.dll,sha256=nhrWtvXPfV-pqb4xArUFDpRaByl55BcFwpX6tH717QU,199168
13
- esiaccel/codegen.py,sha256=uoYELtnIabVvgLeCABj-mWras0BvmSKABPH-cd9nDFk,6560
14
- esiaccel/esi-cosim.py,sha256=P7n3SBgKPnXynwghY5zK1FmpqZkbC_YxfVIvNNQNl6Q,3817
15
- esiaccel/esiCppAccel.cp310-win_amd64.pyd,sha256=LCD3d9Iq-_KFBd5mEuVuj9iIPCoD-C7ckQgykP-Vd3g,499712
16
- esiaccel/esiquery.exe,sha256=V9H1HfO_FrWp2a4Ta1QAh_TYxOlQWc8SCAk394h-oIk,441856
17
- esiaccel/libcrypto-3-x64.dll,sha256=uoah4qT3KG7ZRgKI3XIUOaeUq_OJlOs-FkcgxLammjc,5327872
18
- esiaccel/libprotobuf.dll,sha256=pL6_Ij2Cr55FzIiKXgm9oYyZYoPPDn28IxCKprsv39Y,12566528
19
- esiaccel/libssl-3-x64.dll,sha256=KvLHQLloxvMoUuqU8l9g2ER7katJiwpLYA1OImRsTTI,871424
20
- esiaccel/re2.dll,sha256=ejblp3yrq-dFhhrNghdjYiInQXRra58i10s6SDxJjis,1213952
21
- esiaccel/types.py,sha256=LFLzUCvtYF6FLsmKet6eJTMq2ija2Z5kxd5Ks6tkS4U,19044
22
- esiaccel/utils.py,sha256=q-8fmgJ9tUvmBsIvqZiZ7u845IJhOjvjYTQLhhrNYl0,1515
23
- esiaccel/zlib1.dll,sha256=LdAvgCv069dnvo-o8YF4yGrQmr_b-z1QlwfjoTFr0Rk,90112
24
- esiaccel/cmake/esiaccelConfig.cmake,sha256=u2aW99k1lEcmYTG1P3BTJqtmDrj53wUUaBz_jzw8kYY,565
25
- esiaccel/cosim/Cosim_DpiPkg.sv,sha256=9qGn1VyAVrzBP5At1thV6xrovg0WghICD01Zz9J221E,3458
26
- esiaccel/cosim/Cosim_Endpoint.sv,sha256=-XXrGvvk6hdiZ-Ex6_QtdKXXUwKJLKSvpTUK3o0gPZ8,7589
27
- esiaccel/cosim/Cosim_Manifest.sv,sha256=vl9b6XieEkP880IBw1ferekBnDJwFanZZggJJGertXM,1123
28
- esiaccel/cosim/driver.cpp,sha256=Lvmo03pzzhoswdxAtdXAm-oU6UkfTyl1LgoCpyDzLhY,3842
29
- esiaccel/cosim/driver.sv,sha256=LAkFEXTwX3KKwZLSzYZFwMPWxZwVStuhUsfecHHpGzU,1890
30
- esiaccel/cosim/questa.py,sha256=2xALwRzsOFZ1_xk3f2d849GMvGspNCK4XL8zVDBjXlA,4626
31
- esiaccel/cosim/simulator.py,sha256=HpkvKPbpyqalRp8poRYU3E0taYxTRmxcmBEJ7YOecx4,13941
32
- esiaccel/cosim/verilator.py,sha256=dwiEkKOem5OKPV9AK6O1ohr22MTsyDxBVnriDRFoVa8,2877
33
- esiaccel/include/esi/Accelerator.h,sha256=RhkZ2HeMZ0iHc5BkHdDWXoeg9J9lyPQciH5bWq5Qc_w,9772
34
- esiaccel/include/esi/CLI.h,sha256=Nn8tHn_xtEfkrD7USE2tao6ktYOJ6xcbnhZkS9-ox0A,2540
35
- esiaccel/include/esi/Common.h,sha256=-eK_r24nxpQkBQKOOuwcHJVUB1AP3iDgLwvzGWFItAY,6008
36
- esiaccel/include/esi/Context.h,sha256=Tk_4nBDtTeVY62GfX4Cs_ZMIQstjSgrWHddN_PKANEA,2396
37
- esiaccel/include/esi/Design.h,sha256=mU8OwpCYijiWSdDq17l45LMzZxBca93nosudWCXNHfQ,4922
38
- esiaccel/include/esi/Engines.h,sha256=bbGbhXjYMpIpXh_DR0OS57zyGQUIDXh_S7xHX3su0Y0,4831
39
- esiaccel/include/esi/Logging.h,sha256=sHqMcpp0lNIHkIEyvSm-BBWx4zXXh6NOATCgZpgzYI4,8944
40
- esiaccel/include/esi/Manifest.h,sha256=ZdIu_vXXLS4bwOoISFo-sFjzvB9x5ddYmNmaknyF0ds,2110
41
- esiaccel/include/esi/Ports.h,sha256=T2WbPBViUSvFbO5Jjxlcp_eGq9jMitguvNnz3O0564U,10543
42
- esiaccel/include/esi/Services.h,sha256=hv_asloGwIVcgoCjtYubfBvb-UJbU_GQKoZW464BYn8,15125
43
- esiaccel/include/esi/Types.h,sha256=6krb9cRpVvuml35LqR7SHPTDMdz9u4773SON94_3_Ig,9298
44
- esiaccel/include/esi/Utils.h,sha256=KPd75GajIFeTBVJocXBjwsJqhbZg-ShWZCIe3oQdBss,3061
45
- esiaccel/include/esi/Values.h,sha256=1xXxNV2oUr84At3Y7aXBqbiPZxyJXeUbhycl0O0fUtk,11074
46
- esiaccel/include/esi/backends/Cosim.h,sha256=s7vYd0ra6m1nvk-n37MjvBoGVI-CCUKBt0DU4PKlaHM,2838
47
- esiaccel/include/esi/backends/RpcServer.h,sha256=WMwnhwU2qnrcglGNeiKg9QQHpkDx1QE1JydKYDK4jqE,1856
48
- esiaccel/include/esi/backends/Trace.h,sha256=kx4wwLH3a0ndmRUdaDyYGZ1SP83zlpFrk30Nw8ZrJJA,3286
49
- esiaccel-0.1.5.dev347.dist-info/licenses/LICENSE,sha256=vtnVnB8_lN1yPYcA5MeT56R8UsQtBhyzZLBvu_KMf7I,13468
50
- esiaccel-0.1.5.dev347.dist-info/METADATA,sha256=jTi7JJxyDRUhnGQ6WEDWblQjpP4DGqrOl-ItlSQV4jc,16148
51
- esiaccel-0.1.5.dev347.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
52
- esiaccel-0.1.5.dev347.dist-info/entry_points.txt,sha256=_CuNLV0fyTURxRREFwpzGycifZW_-7-MyuJNEwKK9J8,137
53
- esiaccel-0.1.5.dev347.dist-info/top_level.txt,sha256=fYWTWMDK4PDu4ePQ9NtcFHas2k8-d1kWhTs2avPpgB4,9
54
- esiaccel-0.1.5.dev347.dist-info/RECORD,,