Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[aot] Remove taichi c-api version log #8415

Merged
merged 4 commits into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion c_api/src/taichi_core_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ void ti_set_last_error(TiError error, const char *message) {
TiRuntime ti_create_runtime(TiArch arch, uint32_t device_index) {
TiRuntime out = TI_NULL_HANDLE;
TI_CAPI_TRY_CATCH_BEGIN();
TI_INFO("Taichi Runtime C-API version is: {}", TI_C_API_VERSION);
// TI_INFO("Taichi Runtime C-API version is: {}", TI_C_API_VERSION);
switch (arch) {
#ifdef TI_WITH_VULKAN
case TI_ARCH_VULKAN: {
Expand Down
Loading