Add support for int64 and bfloat16 types, improve tensor conversion s…#91
Draft
gongchensu wants to merge 1 commit intoInfiniTensor:mainfrom
Draft
Add support for int64 and bfloat16 types, improve tensor conversion s…#91gongchensu wants to merge 1 commit intoInfiniTensor:mainfrom
gongchensu wants to merge 1 commit intoInfiniTensor:mainfrom
Conversation
pengcheng888
reviewed
Dec 2, 2025
| # -------------------------------------------------------------------------- # | ||
| start_time = time.time() | ||
| logits = self(**model_inputs) | ||
| # Ensure computation is complete - sync stream before reading logits |
pengcheng888
reviewed
Dec 2, 2025
| f" Time per step: decoder {round(sum(time_list[1:]) / (len(time_list) - 1), 2)} token/ms \n", | ||
| ) | ||
|
|
||
| if len(time_list) > 0: |
Collaborator
There was a problem hiding this comment.
if len(time_list) > 1
pengcheng888
reviewed
Dec 2, 2025
| print( | ||
| f"\n\n\n Time per step: prefill {round(time_list[0], 2)} token/ms\n", | ||
| ) | ||
| if len(time_list) > 1: |
pengcheng888
reviewed
Dec 2, 2025
| element_size, np_dtype = dtype_info_map.get(infini_tensor_cpu.dtype, (4, np.float32)) | ||
|
|
||
| # Use safer approach: allocate memory first, then copy | ||
| import ctypes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…afety
解决天数上推理的问题