repository
stringclasses
156 values
issue title
stringlengths
1
1.01k
labels
stringclasses
8 values
body
stringlengths
1
270k
vuejscore
mixin prop be not merge into component
Bug
version 3 0 0 beta 14 reproduction link step to reproduce execute reproduction what be expect mixin prop should be render what be actually happen nothing be render
vuejscore
a full page reload be need when change attribute prop of import component
Bug
describe the bug this may or may not be relate to vuejs vue next 1156 in short if you import and use any vue component hmr will not work when you change attribute prop of that component you will need to do a full page reload to see the change system info require vite version 0 13 ...
vuejscore
hmr crash on attribute change
Bug
describe the bug in a freshly create app create use create vite app I stumble upon a weird bug that be trigger when you update the state for example by click on the increase button and then add remove change attribute of any native html element that listen to any event this should trigger ...
vuejscore
transitiongroup child with same key but render in different v for be not treat as same child
Bug
version 3 0 0 beta 9 reproduction link step to reproduce html toggle toggle in the example above with item i d 1 do false toggling item do would trigger a v move transition in vue 2 as it d see the item as be the same and ...
vuejscore
reactive and ref type infer be wrong
Bug
version 3 0 0 beta 7 reproduction link step to reproduce typescript const state reactive foo value 1 label bar console log state foo label property label do not exist on type number what be expect no...
vuejscore
teleport content be not remove
Bug
version 3 0 0 beta 4 reproduction link step to reproduce create a component use teleport add this component to the app via v if then make sure that the v if evaluate to false the component will be unmounte what be expect the teleport content be unmounted when th...
vuejscore
prop be cast null ish value to empty string
Bug
version 3 0 0 beta 4 reproduction link step to reproduce 1 create template 2 see the error what be expect set the srcobject of the video dom to null what be actually happen it be try to set it to error come from here l35 ...
vuejscore
functional component in dev mode do not work
Bug
version 3 0 0 beta 3 reproduction link l81 l81 step to reproduce create a vue component js export default function prop what be expect component work what be actually happen error in console typeerror can not assign to read on...
vuejscore
componet be
Bug
version 3 0 0 beta 3 reproduction link step to reproduce component be what be expect component tag what be actually happen component tag
vuejscore
mixin datum be lose when a previous mixin watch that datum
Bug
version 3 0 0 beta 3 reproduction link step to reproduce none what be expect text should read mixin1 mixin3 what be actually happen text read mixin1 and vue esm browser js 4685 vue warn property mixin3data be access during render but be n...
vuejscore
dynamic component duplicate sible node instead of appear with v if
Bug
version 3 0 0 beta 3 reproduction link step to reproduce click the button click I to break thing what be expect head hello should appear what be actually happen the clicked button be duplicate
vuejscore
re evaluation of prop default when use render function and on prop update trigger from parent
Bug
version 3 0 0 beta 2 reproduction link step to reproduce I do setup a setinterval that update a reactive value that be send as a prop to a child I also add a way to see if the prop be re evaluate so it add a text log in the dom this way you can see the behaviour directly ...
vuejscore
ref type break for htmlelement
Bug
version 3 0 0 alpha 12 reproduction link step to reproduce note the error on line 4 of index ts what be expect ref null be assignable to a variable of type ref what be actually happen type ref accesskey string readonly accesskeylabe...
vuejscore
nbsp be convert to normal space character
Bug
version 3 0 0 alpha 11 reproduction link link to 7b 22src 22 3a 22 3cdiv 3e 5cn 20 20 20 20 3cspan 3ehi 3c 2fspan 3e 26nbsp 3b 26nbsp 3b 26amp 3b 26nbsp 3b 26nbsp 3b 3cspan 3ethere 3c 2fspan 3e 5cn 20 20 20 20 3chr 3e 5cn 20 20 20 20i 20wan t 20lot s 20of 20 26nbsp 3b 26nbsp 3b 26nbsp 3b 26nbsp 3b ...
vuejscore
effect don t work when use reactive to proxy a map which have reactive object as member s key
Bug
version 3 0 0 alpha 11 reproduction link step to reproduce with devtool open it obvious that the trigger should be print twice however it just print once what be expect the function wrap by effcet should rerun what be actually happen it lose respon...
vuejscore
internal vue crash v if on component
Bug
version 3 0 0 alpha 10 reproduction link step to reproduce open the console click on the button vue do some bad stuff what be expect v if be replace by v else no error what be actually happen stuff crash apparently because slot content be eval...
vuejscore
the lead newline character immediately follow should be strip
Bug
version 3 0 0 alpha 10 reproduction link 7b 22src 22 3a 22 3cpre 3e 5cn123 3c 2fpre 3e 5cn 22 2c 22options 22 3a 7b 22mode 22 3a 22module 22 2c 22prefixidentifiers 22 3afalse 2c 22optimizebinding 22 3afalse 2c 22hoiststatic 22 3afalse 2c 22cachehandlers 22 3afalse 2c 22scopeid 22 3anull 7d 7d 7b...
vuejscore
transition not work with custom dynamic component
Bug
version 3 0 0 alpha 10 reproduction link step to reproduce click on the toggle button multiple time what be expect the three element to animate the same way the second toggle should use a different animation for all element what be actually happen ...
vuejscore
v cloak not work when use on the root element
Bug
version 3 0 0 alpha 10 reproduction link step to reproduce usual v cloak step what be expect the cloak element should become visible after compilation what be actually happen nothing become visible I see at that v cloak be add to vue 3 but it d...
vuejscore
dynamic content be not correctly update in certain case
Bug
version 3 0 0 alpha 9 reproduction link step to reproduce click the click I button what be expect 2 2 2 2 2 show on the screen what be actually happen 2 1 1 1 2 show on the screen
vuejscore
warn on incompatible node version for devs
Good First Issue
what problem do this feature solve let devs know which node version to use for dev and test when contributor first clone the repo and run yarn they might not have read contribute md yet where it say node 10 what do the propose api look like 1 something like package devengine tha...
vuejscore
vue reactivity map and set lookup behave differently after be proxie
Bug
version 3 0 0 alpha 7 reproduction link step to reproduce insert some reactive value into a non reactive set or map wrap the set or map in reactive the insert value will no long match as key make get have and delete return undefined false what be...
vuejscore
improve proptype function
Help Wanted
what problem do this feature solve a typescript error occure on this example code ts import definecomponent proptype from vue export default definecomponent prop category onselect type function as proptype val number void typescript er...
vuejscore
watch handler not execute immediately if source return undefine
Bug
version 3 0 0 alpha 4 reproduction link step to reproduce ts watch null console log null watch watch undefined console log undefined watch what be expect null watch and undefined watch in console what b...
vuejscore
key inside update during leave transition
Bug
version 3 0 0 alpha 4 reproduction link step to reproduce 1 add a 2 wrap it in a with mode out in 3 key the be destroy but keep alive until the leave transition be do then the new appear what be actually happen the leave transition be a...
vuejscore
be not allow in attribute value
Bug
version 16 0 0 alpha 2 reproduction link 7b 22src 22 3a 22 3ca 20href 3d 5c 22github 2com 2flogin 2fo2adu4th 2faduthorize 3fclient i d 3da 26e 5c 22 20target 3d 5c 22 blank 5c 22 3ehello 20 3c 2fa 3e 5cn 22 2c 22options 22 3a 7b 22mode 22 3a 22module 22 2c 22prefixidentifiers 22 3afalse 2c 22hoists...
vuejscore
attribute get convert to camelcase without explicit prop declaration
Bug
version 3 0 0 alpha 1 reproduction link vue 2 for comparison step to reproduce ts import h createapp from vue function button prop attrs console log prop attrs const app setup return h butt...
vuejscore
behavior change in the rendering of primitive value
Bug
version 3 0 0 alpha 1 reproduction link 2 x 3 0 0 alpha 1 step to reproduce just open these above reproduction link what be expect there be an inconsistency between vue 2 x and the late alpha 3 x should not render a boolean value in the render function what be ...
vuejscore
template compiler 2 x incompatibility multiple statement inside event handler have invalid generate code
Bug
version 3 0 0 alpha 1 reproduction link none step to reproduce attempt to compile this template click what be expect it should compile without any error or warning and when the button be click it should call the foo and bar function sequentially ...
vuejscore
test e2e enhance and fix test of svg example
Bug
currently the fail test be expect I find a bug that be probably cause by v model I try but I could t fix it so I add test to cover this issue the new assertstat part therefore the test of this pr should fail now I can rebase and push after it s fix to reproduce the issue 1 open the ...
vuejscore
refactor reactivity add warn for readonly compute setter
Duplicate
add warn for readonly compute setter
vuejscore
fix fix issimpleidentifi output on reserve word
Bug
issimpleidentifier currently return true when pass true false and other reserved keyword result in ctx true appear in the render function when thing like v if true be use I ve use the allowedglobal l9 list from vue 2 with a few addition for boolean and null so that the behav...
vuejscore
fix runtime dom nodeop insert unkeyed element
Bug
build distribution global problem when add new item to a v for list nodeop insert recieve the app container element inste of the parent of the child here be the error image context I just be play around the new composition api and make a simple app to custom task I find ...
tensorflowtensorflow
systemerror in tf constant when dtype be tf uint64 and value be nagetive
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 15 custom code no os platform and distribution linux ubuntu 20 04 mobile device no response python version 3 10 ...
tensorflowtensorflow
what be the effect of tf guard by mu for variable like tensor
Bug
source source tensorflow version tf2 14 custom code yes os platform and distribution linux ubuntu 20 04 mobile device no response python version 3 9 bazel version no response gcc compiler version no response cuda ...
tensorflowtensorflow
tensorflow entity initialize variable at 0x000001f58f9464c8 could not be transform and will be execute as be
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 0 0 custom code yes os platform and distribution window 11 mobile device no response python version 3 7 12 bazel version no response ...
tensorflowtensorflow
efficient serve ipynb have some bug
Bug
issue type documentation bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 16 1 custom code no os platform and distribution no response mobile device no response python version no response bazel ve...
tensorflowtensorflow
generate image with biggan demo in doc no long compatible with tensorflow hub
Bug
issue type documentation bug have you reproduce the bug with tensorflow nightly no source source tensorflow version tf 1 7 0 custom code no os platform and distribution no response mobile device no response python version 3 7 11 bazel version ...
tensorflowtensorflow
tf trt warning could not find tensorrt
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source source tensorflow version 2 15 0 custom code no os platform and distribution ubuntu 22 04 mobile device no response python version 3 11 bazel version no response ...
tensorflowtensorflow
check fail ret 0 11 vs 0 thread tf data private threadpool creation via pthread create fail abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 0 post1 custom code yes os platform and distribution rocky linux 8 9 mobile device no response python version 3 10 12 bazel version no re...
tensorflowtensorflow
abort core dump with tf raw op loadandremapmatrix
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 16 1 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 11 bazel version no response ...
tensorflowtensorflow
call submodel in train step throw valueerror when save and loading error
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source source tensorflow version 2 15 custom code yes os platform and distribution linux ubuntu 23 10 mobile device no response python version 3 11 ...
tensorflowtensorflow
importerror when use tensorflow 2 8 0 and python 3 9 16 undefined symbol pycmethod new
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 8 0 custom code yes os platform and distribution linux amd64 mobile device emr cluster python version 3 9 16 bazel version no response ...
tensorflowtensorflow
tf cast do not preserve request precision for python type of float64 int64 complex128 etc
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version any new version up to develop custom code no current behavior tf cast truncate the precision of non tf python numpy type where ...
tensorflowtensorflow
warn tensorflow your input run out of datum interrupting training always occur after 80 of total epoch
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source source tensorflow version 2 15 custom code yes os platform and distribution no response mobile device no response python version 3 10 12 bazel version no response ...
tensorflowtensorflow
conv2d compute wrongly in window os
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 16 custom code yes os platform and distribution window 10 mobile device no response python version no response ...
tensorflowtensorflow
how to solve this error attributeerror module keras tf keras keras layers have no attribute experimental
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 15 0 custom code yes os platform and distribution no response mobile device no response python version no response bazel version no r...
tensorflowtensorflow
segmentation fault core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 13 0 custom code yes os platform and distribution ubuntu 22 04 mobile device no response python version 3 10 12 bazel version no response ...
tensorflowtensorflow
tf raw op approximateequal erfinv fail support a few datum type inconsistent with the documentation
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 0 custom code yes os platform and distribution no response mobile device no response python version no response bazel version no resp...
tensorflowtensorflow
unrecognized keyword argument pass to embed
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version v2 16 0 rc0 18 g5bc9d26649c 2 16 1 custom code yes os platform and distribution window 11 mobile device no response python version 3 11 5 bazel v...
tensorflowtensorflow
enable xla in tensorflow 2 16 cause memory leak
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tensorflow 2 16 1 tensorflow and cuda 2 16 1 custom code yes os platform and distribution linux ubuntu 22 04 mobile device no re...
tensorflowtensorflow
lossscaleoptimizer get scale loss do not exist
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf2 16 custom code no os platform and distribution linux ubuntu 20 04 on windows10 wsl mobile device no response python version 3 10 13 bazel ve...
tensorflowtensorflow
slient overflow occur in tf range lead to incorrect result here be a possible fix
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 0 custom code yes os platform and distribution no response mobile device no response python version no response bazel version no resp...
tensorflowtensorflow
unexpected step per epoch behavior in model fit
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 0 custom code yes os platform and distribution window 11 x64 mobile device no response python version 3 10 12 bazel version no response ...
tensorflowtensorflow
work code break after deploy to new installation valueerror when use stateful true in a rnn the batch size must be static find dynamic batch size sequence shape none xx xx
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 16 1 custom code no os platform and distribution ubuntu 22 04 mobile device no python version 3 10 12 bazel versi...
tensorflowtensorflow
upgrade to tensorflow 2 15 1 from 2 14 1 produce pylint bug e1101 module tensorflow have no keras member
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 1 custom code no os platform and distribution ubuntu 21 04 mobile device no response python version 3 9 18 bazel version no response ...
tensorflowtensorflow
abort core dump in tf math unsorted segment mean
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source binary tensorflow version tf 2 14 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
abort core dump in tf raw op sparsematrixzero
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source binary tensorflow version tf 2 13 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 8 bazel version no response ...
tensorflowtensorflow
conv3d operation error on window platform
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 15 0 tf 2 16 0 tf 2 16 1 custom code yes os platform and distribution window 10 mobile device no response python version 3 9 bazel versi...
tensorflowtensorflow
valueerror layer dense expect 1 input s receive 2 instead on tf keras model load model
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source source tensorflow version v2 16 0 rc0 18 g5bc9d26649c 2 16 1 custom code yes os platform and distribution window 11 kb5035853 mobile device no response python version 3 11 8 ...
tensorflowtensorflow
add tensorflow hub keraslayer to sequential model raise valueerror
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 16 1 custom code no os platform and distribution ubuntu 22 04 3 lts mobile device no response python version python 3 11 0rc1 bazel version ...
tensorflowtensorflow
tf math angle nan return inconsistent result on dtype float64 complex128
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 0 custom code yes os platform and distribution linux 5 14 0 362 18 1 el9 3 x86 64 x86 64 with glibc2 34 mobile device almalinux 9 python version ...
tensorflowtensorflow
tf keras layers prelu outputs nan on positive input
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 0 custom code yes os platform and distribution no response mobile device no response python version no response bazel version no resp...
tensorflowtensorflow
predict crash if last batch be small then batch size
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source source tensorflow version tf 2 16 1 custom code yes os platform and distribution linux ubuntu 23 04 mobile device no response python version 3 11 ...
tensorflowtensorflow
unable to retrieve blas factory in tensorflow 2 16 1
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source binary tensorflow version 2 16 1 custom code yes os platform and distribution linux ubuntu 20 04 mobile device no response python version no resp...
tensorflowtensorflow
aborted can be trigger in tf raw op tensorlistconcat
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
a check fail can be trigger in tf raw op statefulpartitionedcall
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
could not load library cudnn cnn infer64 8 dll error code 126
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 10 0 custom code no os platform and distribution window 10 mobile device no response python version 3 10 bazel version no response gc...
tensorflowtensorflow
tf raw op resourceapplymomentum abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
tf raw op resourceapplygradientdescent abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
tf raw op quantizeanddequantizev3 abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
tf raw op experimentaldatasettotfrecord abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 ba...
tensorflowtensorflow
tf raw op datasettotfrecord abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 ba...
tensorflowtensorflow
tf image draw bounding box abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 ba...
tensorflowtensorflow
tf audio decode wav abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
tf transpose lead to program abortion on a normal value while the perm contain 1
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 0 custom code yes os platform and distribution no response mobile device no response python version no response bazel version no resp...
tensorflowtensorflow
pywrap tensorflow internal so library contain runpath entry that look like c symbol
Bug
issue type bug tensorflow version 2 13 2 16 python version 3 11 3 12 current behavior the runpath in the wheel share object be weirdly mangle wget unzip whl objdump x tensorflow python pywrap tensorflow internal so grep runpath runpat...
tensorflowtensorflow
incorrect result when use tf norm to conduct p norm computation on float16 precision
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 0 custom code yes os platform and distribution no response mobile device no response python version no response bazel version no resp...
tensorflowtensorflow
how can I exit the xlacontrolflowcontext when inside a jit compile tf function exit function take no effect
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 22 04 python version 3 10 cuda cudnn version cuda12 3 cudnn9 0 ...
tensorflowtensorflow
typeerror this dict descriptor do not support dictwrapper object during trivial model save
Bug
issue type bug have you reproduce the bug with tensorflow nightly no bug doesn t exist in tf nightly 2 17 0 dev20240312 source source tensorflow version v2 16 1 custom code yes os platform and distribution osx mobile device no respons...
tensorflowtensorflow
conv2d op produce output without nan with nan input
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 10 0 custom code yes os platform and distribution linux ubuntu 20 04 4 mobile device no response python version 3 7 6 bazel version no re...
tensorflowtensorflow
tf tensor scatter nd add abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
tf raw op tensorscattersub abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
tf raw op fusedpadconv2d abort core dump
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
save model win t load unable to synchronously open object bad local heap signature
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version 2 16 1 custom code yes os platform and distribution window 10 mobile device no response python version 3 12 bazel version no response g...
tensorflowtensorflow
tf 2 16 1 fail to work with gpu
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source binary tensorflow version tf 2 16 1 custom code no os platform and distribution linux ubuntu 22 04 4 lts mobile device no response python version 3 10 12 bazel version n...
tensorflowtensorflow
core dump with tf raw ops fakequantwithminmaxvarsperchannel
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
abort core dump with tf raw op avgpoolgrad
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
segmentation fault with tf raw op audiospectrogram
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution ubuntu 20 04 mobile device no response python version 3 9 bazel version no response ...
tensorflowtensorflow
abort core dump in tf io tfrecordwriter
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution linux ubuntu 20 04 mobile device no response python version 3 9 ...
tensorflowtensorflow
the result of tf quantization fake quant with min max args be inconsistent between cpu and gpu
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 15 custom code yes os platform and distribution linux ubuntu 20 04 mobile device no response python version 3 8 bazel version no response...
tensorflowtensorflow
jit compile keep fill gpu memory to crash with simple dense and small datum with official docker image
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version v2 15 0 2 g0b15fdfcb3f 2 15 0 custom code no os platform and distribution linux ubuntu 22 docker mobile device no response ...
tensorflowtensorflow
tensorflow memory leak during inference
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source source tensorflow version v2 13 0 17 gf841394b1b7 2 13 1 custom code yes os platform and distribution ubuntu 20 04 6 lts mobile device no response python version 3 8 bazel ...
tensorflowtensorflow
overlap window with tf datum experimental make csv dataset
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 8 custom code no os platform and distribution no response mobile device no response python version no response bazel version no response...
tensorflowtensorflow
notfounderror home chengjun stylegan2 master dnnlib tflib cudacache fuse bias act 347e82e8919aeb0d5c7dc989e996c091 so undefined symbol zn10tensorflow12opdefbuilder4attrenst7 cxx1112basic stringicst11char traitsicesaiceee
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 1 14 custom code yes os platform and distribution linux ubuntu 22 04 mobile device no response python version 3 6 bazel version no response...
tensorflowtensorflow
how the data member datum of tensorbuffer be destroy
Bug
from the tensorbuffer definition I notice there be a member datum l108 I be curious about how this void pointer will be destroy I find refcounte unref have the logic of delete especially the follow line l336 but it seem the above line do not delete what the void pointer dat...
tensorflowtensorflow
load model can not load model from previous version
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version tf 2 14 and tf 2 15 custom code yes os platform and distribution no response mobile device no response python version no response bazel versi...
tensorflowtensorflow
could not find device for node generateboundingboxproposal
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source source tensorflow version 2 15 0 custom code yes os platform and distribution no response mobile device no response python version no response bazel version no resp...
tensorflowtensorflow
local rendezvous be abort with status out of range end of sequence warn when iterate over a dataset
Bug
issue type bug have you reproduce the bug with tensorflow nightly yes source binary tensorflow version tf 2 16 custom code yes os platform and distribution linux ubuntu 22 04 mobile device no response python version 3 10 bazel version no respons...
tensorflowtensorflow
error with custom keras model
Bug
issue type bug have you reproduce the bug with tensorflow nightly no source source tensorflow version v2 13 0 17 gf841394b1b7 2 13 1 custom code yes os platform and distribution linux ubuntu 20 04 6 lts mobile device no response python version 3 9 18 ...