@@ -120,9 +120,9 @@ Tachyon can be built in your own Bazel project with the following two simple ste
120
120
First, obtain the Tachyon code from a specific commit hash and get a SHA256 value from the fetched code through these commands:
121
121
122
122
``` shell
123
- wget https://github.com/kroma-network/tachyon/archive/d056e1c61622e8788ae558c7fd4c19415fe7a7e8 .tar.gz
123
+ wget https://github.com/kroma-network/tachyon/archive/e02feac98608a6bb1efc75df07237f702db7cce7 .tar.gz
124
124
125
- shasum -a 256 d056e1c61622e8788ae558c7fd4c19415fe7a7e8 .tar.gz
125
+ shasum -a 256 e02feac98608a6bb1efc75df07237f702db7cce7 .tar.gz
126
126
```
127
127
128
128
Second, input the shasum output into your ` WORKSPACE ` file as the ` sha256 ` argument like shown below:
@@ -133,9 +133,9 @@ Second, input the shasum output into your `WORKSPACE` file as the `sha256` argum
133
133
load(" @bazel_tools//tools/build_defs/repo:http.bzl" , " http_archive" )
134
134
http_archive(
135
135
name = " kroma_network_tachyon" ,
136
- sha256 = " aae28c7853dff4bb91f60aa7cbd17f26e4014bbe67d8853d6e2012d61c7e3715 " ,
137
- strip_prefix = " tachyon-d056e1c61622e8788ae558c7fd4c19415fe7a7e8 " ,
138
- urls = [" https://github.com/kroma-network/tachyon/archive/d056e1c61622e8788ae558c7fd4c19415fe7a7e8 .tar.gz" ],
136
+ sha256 = " e3bfefb20bcb425a5169c46cf0bd4dacbdeaceab94b144a3d5fa4214d9e974d2 " ,
137
+ strip_prefix = " tachyon-e02feac98608a6bb1efc75df07237f702db7cce7 " ,
138
+ urls = [" https://github.com/kroma-network/tachyon/archive/e02feac98608a6bb1efc75df07237f702db7cce7 .tar.gz" ],
139
139
)
140
140
```
141
141
@@ -146,11 +146,11 @@ There are two ways to install the Tachyon package. While it is recommended to in
146
146
### Install package from pre-built binaries
147
147
148
148
``` shell
149
- curl -LO https://github.com/kroma-network/tachyon/releases/download/v0.3 .0/libtachyon_0.3 .0_amd64.deb
150
- curl -LO https://github.com/kroma-network/tachyon/releases/download/v0.3 .0/libtachyon-dev_0.3 .0_amd64.deb
149
+ curl -LO https://github.com/kroma-network/tachyon/releases/download/v0.4 .0/libtachyon_0.4 .0_amd64.deb
150
+ curl -LO https://github.com/kroma-network/tachyon/releases/download/v0.4 .0/libtachyon-dev_0.4 .0_amd64.deb
151
151
152
- sudo dpkg -i libtachyon_0.3 .0_amd64.deb
153
- sudo dpkg -i libtachyon-dev_0.3 .0_amd64.deb
152
+ sudo dpkg -i libtachyon_0.4 .0_amd64.deb
153
+ sudo dpkg -i libtachyon-dev_0.4 .0_amd64.deb
154
154
```
155
155
156
156
### Build package from source
@@ -162,8 +162,8 @@ To build the Halo2 Debian package, the `has_openmp` option is recommended. Run t
162
162
bazel build --config opt --//:c_shared_object //scripts/packages/debian/runtime:debian
163
163
bazel build --config opt --//:c_shared_object //scripts/packages/debian/dev:debian
164
164
165
- sudo dpkg -i bazel-bin/scripts/packages/debian/runtime/libtachyon_0.3 .0_amd64.deb
166
- sudo dpkg -i bazel-bin/scripts/packages/debian/dev/libtachyon-dev_0.3 .0_amd64.deb
165
+ sudo dpkg -i bazel-bin/scripts/packages/debian/runtime/libtachyon_0.4 .0_amd64.deb
166
+ sudo dpkg -i bazel-bin/scripts/packages/debian/dev/libtachyon-dev_0.4 .0_amd64.deb
167
167
```
168
168
169
169
## Other Info
0 commit comments