Giter Site home page Giter Site logo

1a1a11a / pymimircache Goto Github PK

View Code? Open in Web Editor NEW
38.0 6.0 14.0 9.13 MB

cache analysis platform developed at Emory University and CMU

Home Page: http://mimircache.info

License: GNU General Public License v3.0

Python 74.62% C 24.95% Dockerfile 0.14% Makefile 0.29%
cache lru profiling cache-simulator cache-traces

pymimircache's People

Contributors

0xreza avatar 1a1a11a avatar karimireza avatar pbhandar2 avatar shureed avatar the-spellchecker avatar ymirv avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

pymimircache's Issues

Cache warmup feature for hit_ratio

An option to warmup the cache with a trace and then calculate hit_ratios on a separate test trace so that if after warmup cache contains all unique keys of the test trace then MIMIR gives a 100% hit_rate.

Currently, all unique keys in the trace cause a miss, and hence the hit-rate can never reach 100% even if the cache_size is big enough to hold all of them.

question about S4LRU

Hi, I'm trying to simulate s4lru on trace, but it seems doesn't work, Is there something wrong with my usage?
here is my code and the error:

from PyMimircache import *
c = Cachecow()
c.open('trace.txt')
profiler = c.profiler('S4LRU', cache_size=2000, bin_size=100)
profiler.plotHRC()

concurrent.futures.process._RemoteTraceback:
"""
Traceback (most recent call last):
File "/usr/lib/python3.6/concurrent/futures/process.py", line 175, in _process_worker
r = call_item.fn(*call_item.args, **call_item.kwargs)
File "/usr/local/lib/python3.6/dist-packages/PyMimircache/profiler/pyGeneralProfiler.py", line 59, in _cal_hit_count_subprocess
hit = process_cache.access(req, )
File "/usr/local/lib/python3.6/dist-packages/PyMimircache/cache/s4lru.py", line 110, in access
self._update(req_item, )
File "/usr/local/lib/python3.6/dist-packages/PyMimircache/cache/s4lru.py", line 52, in _update
req_item, self.fourth_lru, self.third_lru)
File "/usr/local/lib/python3.6/dist-packages/PyMimircache/cache/s4lru.py", line 65, in _move_to_upper_level
node = lowerLRU.cache_dict[element]
AttributeError: 'LRU' object has no attribute 'cache_dict'
"""

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/root/PycharmProjects/cache_simulation/test.py", line 5, in
profiler.plotHRC()
File "/usr/local/lib/python3.6/dist-packages/PyMimircache/profiler/pyGeneralProfiler.py", line 201, in plotHRC
self._run()
File "/usr/local/lib/python3.6/dist-packages/PyMimircache/profiler/pyGeneralProfiler.py", line 140, in _run
result = future.result()
File "/usr/lib/python3.6/concurrent/futures/_base.py", line 425, in result
return self.__get_result()
File "/usr/lib/python3.6/concurrent/futures/_base.py", line 384, in __get_result
raise self._exception
AttributeError: 'LRU' object has no attribute 'cache_dict'

thank u !

Question

Hi

I am trying to compute the hit ratio for a trace set I have. I played with the example of tutorial and my sense is that the simulator works with fixed object sizes. I read over the "Dynamic Performance Profiling of Cloud Caches" paper and the variable object size could be added as an extension. I was wondering if the variable object size is supported by the current version of the simulator.

Regards
Mania

Add TinyLFU

TinyLFU would be a nice addition to your suite. It takes the unique approach of using sketch data structures to retain history rather than using ghost entries. This tends to skew the policy to favor frequency, but an adaptive window helps it perform very well in small, recency-skewed workloads too.

You might also find it useful to borrow from my simulator.

some errors when I play cache prefetching

It seems that libcachesim doesn't support cache prefetching such as amp, pg and mithril so I play using PyMimirCache. But I receive some errors.

I install PyMimircache using python3 setup.py install and the process is as follows.

CMimircache components CMimircache.CacheReader, CMimircache.LRUProfiler, CMimircache.GeneralProfiler, CMimircache.Heatmap import failed, performance will degrade, reason: No module named 'PyMimircache.CMimircache.LRUProfiler', No module named 'PyMimircache.CMimircache.CacheReader', No module named 'PyMimircache.CMimircache.Heatmap', No module named 'PyMimircache.CMimircache.GeneralProfiler', ignore this warning if this is installation
CMimircache is not successfully installed, modules beginning with C are all disabled
not all plots in twoDPlots support Py mode
/home/zzl/local/anaconda3/lib/python3.9/site-packages/setuptools/dist.py:771: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead
  warnings.warn(
running install
/home/zzl/local/anaconda3/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
/home/zzl/local/anaconda3/lib/python3.9/site-packages/setuptools/command/easy_install.py:144: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
running bdist_egg
running egg_info
writing PyMimircache.egg-info/PKG-INFO
writing dependency_links to PyMimircache.egg-info/dependency_links.txt
writing requirements to PyMimircache.egg-info/requires.txt
writing top-level names to PyMimircache.egg-info/top_level.txt
reading manifest file 'PyMimircache.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
no previously-included directories found matching 'multiMachineProcessing'
adding license file 'LICENSE'
adding license file 'AUTHORS'
writing manifest file 'PyMimircache.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
running build_ext
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/PyMimircache
creating build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/binaryWriter.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/__init__.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/requestItem.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/vscsiReader.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/plainReader.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/csvReader.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/binaryReader.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/traceStat.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/multiReader.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cacheReader/abstractReader.py -> build/bdist.linux-x86_64/egg/PyMimircache/cacheReader
copying build/lib.linux-x86_64-cpython-39/PyMimircache/version.py -> build/bdist.linux-x86_64/egg/PyMimircache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/c_eviction_stat.cpython-39-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/egg/PyMimircache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/__init__.py -> build/bdist.linux-x86_64/egg/PyMimircache
creating build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/cLRUProfiler.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/twoDPlots.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/cHeatmap.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/profilerUtils.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/pyHeatmap.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/cGeneralProfiler.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/pyLRUProfiler.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/__init__.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/pyHeatmapAux.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/pyTimeProfiler.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/pyGeneralProfiler.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler
creating build/bdist.linux-x86_64/egg/PyMimircache/profiler/utils
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/utils/__init__.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler/utils
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/utils/splay.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler/utils
copying build/lib.linux-x86_64-cpython-39/PyMimircache/profiler/utils/dist.py -> build/bdist.linux-x86_64/egg/PyMimircache/profiler/utils
creating build/bdist.linux-x86_64/egg/PyMimircache/CMimircache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/CMimircache/CacheReader.cpython-39-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/egg/PyMimircache/CMimircache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/CMimircache/Heatmap.cpython-39-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/egg/PyMimircache/CMimircache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/CMimircache/GeneralProfiler.cpython-39-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/egg/PyMimircache/CMimircache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/CMimircache/LRUProfiler.cpython-39-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/egg/PyMimircache/CMimircache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/const.py -> build/bdist.linux-x86_64/egg/PyMimircache
creating build/bdist.linux-x86_64/egg/PyMimircache/top
copying build/lib.linux-x86_64-cpython-39/PyMimircache/top/cachecow.py -> build/bdist.linux-x86_64/egg/PyMimircache/top
copying build/lib.linux-x86_64-cpython-39/PyMimircache/top/__init__.py -> build/bdist.linux-x86_64/egg/PyMimircache/top
creating build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/mru.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/secondChance.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/abstractCache.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/fifo.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/randomv0.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/__init__.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/lru.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/clock.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/slru.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/cacheLine.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/arc.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/random.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/s4lru.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
copying build/lib.linux-x86_64-cpython-39/PyMimircache/cache/optimal.py -> build/bdist.linux-x86_64/egg/PyMimircache/cache
creating build/bdist.linux-x86_64/egg/PyMimircache/utils
copying build/lib.linux-x86_64-cpython-39/PyMimircache/utils/linkedList.py -> build/bdist.linux-x86_64/egg/PyMimircache/utils
copying build/lib.linux-x86_64-cpython-39/PyMimircache/utils/__init__.py -> build/bdist.linux-x86_64/egg/PyMimircache/utils
copying build/lib.linux-x86_64-cpython-39/PyMimircache/utils/randomdict.py -> build/bdist.linux-x86_64/egg/PyMimircache/utils
copying build/lib.linux-x86_64-cpython-39/PyMimircache/utils/printing.py -> build/bdist.linux-x86_64/egg/PyMimircache/utils
copying build/lib.linux-x86_64-cpython-39/PyMimircache/utils/timer.py -> build/bdist.linux-x86_64/egg/PyMimircache/utils
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/binaryWriter.py to binaryWriter.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/requestItem.py to requestItem.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/vscsiReader.py to vscsiReader.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/plainReader.py to plainReader.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/csvReader.py to csvReader.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/binaryReader.py to binaryReader.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/traceStat.py to traceStat.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/multiReader.py to multiReader.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cacheReader/abstractReader.py to abstractReader.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/version.py to version.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/cLRUProfiler.py to cLRUProfiler.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/twoDPlots.py to twoDPlots.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/cHeatmap.py to cHeatmap.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/profilerUtils.py to profilerUtils.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/pyHeatmap.py to pyHeatmap.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/cGeneralProfiler.py to cGeneralProfiler.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/pyLRUProfiler.py to pyLRUProfiler.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/pyHeatmapAux.py to pyHeatmapAux.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/pyTimeProfiler.py to pyTimeProfiler.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/pyGeneralProfiler.py to pyGeneralProfiler.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/utils/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/utils/splay.py to splay.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/profiler/utils/dist.py to dist.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/const.py to const.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/top/cachecow.py to cachecow.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/top/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/mru.py to mru.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/secondChance.py to secondChance.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/abstractCache.py to abstractCache.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/fifo.py to fifo.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/randomv0.py to randomv0.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/lru.py to lru.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/clock.py to clock.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/slru.py to slru.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/cacheLine.py to cacheLine.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/arc.py to arc.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/random.py to random.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/s4lru.py to s4lru.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/cache/optimal.py to optimal.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/utils/linkedList.py to linkedList.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/utils/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/utils/randomdict.py to randomdict.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/utils/printing.py to printing.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/utils/timer.py to timer.cpython-39.pyc
creating stub loader for PyMimircache/CMimircache/CacheReader.cpython-39-x86_64-linux-gnu.so
creating stub loader for PyMimircache/CMimircache/LRUProfiler.cpython-39-x86_64-linux-gnu.so
creating stub loader for PyMimircache/CMimircache/GeneralProfiler.cpython-39-x86_64-linux-gnu.so
creating stub loader for PyMimircache/CMimircache/Heatmap.cpython-39-x86_64-linux-gnu.so
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/CMimircache/CacheReader.py to CacheReader.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/CMimircache/LRUProfiler.py to LRUProfiler.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/CMimircache/GeneralProfiler.py to GeneralProfiler.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/PyMimircache/CMimircache/Heatmap.py to Heatmap.cpython-39.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying PyMimircache.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying PyMimircache.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying PyMimircache.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying PyMimircache.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying PyMimircache.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
writing build/bdist.linux-x86_64/egg/EGG-INFO/native_libs.txt
zip_safe flag not set; analyzing archive contents...
PyMimircache.CMimircache.__pycache__.CacheReader.cpython-39: module references __file__
PyMimircache.CMimircache.__pycache__.GeneralProfiler.cpython-39: module references __file__
PyMimircache.CMimircache.__pycache__.Heatmap.cpython-39: module references __file__
PyMimircache.CMimircache.__pycache__.LRUProfiler.cpython-39: module references __file__
PyMimircache.utils.__pycache__.printing.cpython-39: module MAY be using inspect.getframeinfo
PyMimircache.utils.__pycache__.timer.cpython-39: module references __file__
creating 'dist/PyMimircache-0.0.2.103-py3.9-linux-x86_64.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing PyMimircache-0.0.2.103-py3.9-linux-x86_64.egg
removing '/home/zzl/local/anaconda3/lib/python3.9/site-packages/PyMimircache-0.0.2.103-py3.9-linux-x86_64.egg' (and everything under it)
creating /home/zzl/local/anaconda3/lib/python3.9/site-packages/PyMimircache-0.0.2.103-py3.9-linux-x86_64.egg
Extracting PyMimircache-0.0.2.103-py3.9-linux-x86_64.egg to /home/zzl/local/anaconda3/lib/python3.9/site-packages
PyMimircache 0.0.2.103 is already the active version in easy-install.pth

Installed /home/zzl/local/anaconda3/lib/python3.9/site-packages/PyMimircache-0.0.2.103-py3.9-linux-x86_64.egg
Processing dependencies for PyMimircache==0.0.2.103
Searching for numpy==1.22.3
Best match: numpy 1.22.3
Adding numpy 1.22.3 to easy-install.pth file
Installing f2py script to /home/zzl/local/anaconda3/bin
Installing f2py3 script to /home/zzl/local/anaconda3/bin
Installing f2py3.9 script to /home/zzl/local/anaconda3/bin

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for matplotlib==3.5.1
Best match: matplotlib 3.5.1
Adding matplotlib 3.5.1 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for mmh3==4.0.1
Best match: mmh3 4.0.1
Adding mmh3 4.0.1 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for HeapDict==1.0.1
Best match: HeapDict 1.0.1
Adding HeapDict 1.0.1 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for python-dateutil==2.8.2
Best match: python-dateutil 2.8.2
Adding python-dateutil 2.8.2 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for pyparsing==3.0.8
Best match: pyparsing 3.0.8
Adding pyparsing 3.0.8 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for Pillow==9.1.0
Best match: Pillow 9.1.0
Adding Pillow 9.1.0 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for packaging==21.3
Best match: packaging 21.3
Adding packaging 21.3 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for kiwisolver==1.4.2
Best match: kiwisolver 1.4.2
Adding kiwisolver 1.4.2 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for fonttools==4.32.0
Best match: fonttools 4.32.0
Adding fonttools 4.32.0 to easy-install.pth file
Installing fonttools script to /home/zzl/local/anaconda3/bin
Installing pyftmerge script to /home/zzl/local/anaconda3/bin
Installing pyftsubset script to /home/zzl/local/anaconda3/bin
Installing ttx script to /home/zzl/local/anaconda3/bin

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for cycler==0.11.0
Best match: cycler 0.11.0
Adding cycler 0.11.0 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Searching for six==1.16.0
Best match: six 1.16.0
Adding six 1.16.0 to easy-install.pth file

Using /home/zzl/local/anaconda3/lib/python3.9/site-packages
Finished processing dependencies for PyMimircache==0.0.2.103

problem during install pymimircache

Hi,

I install PyMimircache follow the README.md, when I execute ' sudo pip3 install PyMimircache',
it says that 'CMimircache is not successfully installed, modules beginning with C are all disabled',
and when I run a test program, it falls with information of
' File "open_file.py", line 1, in
from PyMimircache import Cachecow
ModuleNotFoundError: No module named 'PyMimircache' '

I really want to know what should I do to make it run successfully

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.