Go: Some cleanup possible now that TensorFlow 1.1 has been released.

PiperOrigin-RevId: 156221562
This commit is contained in:
Asim Shankar 2017-05-16 13:21:25 -07:00 committed by TensorFlower Gardener
parent fe41d05e7c
commit 70744fb43b
3 changed files with 1 additions and 37 deletions

View File

@ -18,14 +18,4 @@ package tensorflow
// #cgo LDFLAGS: -ltensorflow
// #cgo CFLAGS: -I${SRCDIR}/../../
//
// // TODO(ashankar): Remove this after TensorFlow 1.1 has been released.
// // Till then, the TensorFlow C API binary releases do not contain
// // the TF_DeletePRunHandle symbol. We work around that by
// // implementing the equivalent in session.cpp
// extern void tfDeletePRunHandle(const char*);
import "C"
func deletePRunHandle(h *C.char) {
C.tfDeletePRunHandle(h)
}

View File

@ -1,26 +0,0 @@
/*
Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// TODO(ashankar): Remove this file when TensorFlow 1.1 is released.
// See lib.go for details.
extern "C" {
extern void tfDeletePRunHandle(const char* h);
}
void tfDeletePRunHandle(const char* h) {
delete[] h;
}

View File

@ -199,7 +199,7 @@ func (s *Session) NewPartialRun(feeds, fetches []Output, targets []*Operation) (
return nil, err
}
runtime.SetFinalizer(pr, func(pr *PartialRun) {
deletePRunHandle(pr.handle)
C.TF_DeletePRunHandle(pr.handle)
})
return pr, nil
}