Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 135 for t2_test (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/partially_shaped_variables.py

        self.v0 = tf.Variable([0.], shape=tf.TensorShape(None))
        self.v1 = tf.Variable([0., 1.], shape=[None])
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/dag_object_graph.py

        self.child2 = self.child1
    
      # CHECK: tf_saved_model.global_tensor
      # CHECK-SAME: tf_saved_model.exported_names = ["child1.my_variable", "child2.my_variable"]
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/control_flow_upgrade_legacy_v1.py

          outputs={'result': tensor_info_result},
          method_name='some_function')
    
      return {'key': signature_def}, None, None
    
    
    if __name__ == '__main__':
      common_v1.set_tf_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 02:29:35 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. src/io/fs/sub_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs_test
    
    import (
    	"errors"
    	. "io/fs"
    	"testing"
    )
    
    type subOnly struct{ SubFS }
    
    func (subOnly) Open(name string) (File, error) { return nil, ErrNotExist }
    
    func TestSub(t *testing.T) {
    	check := func(desc string, sub FS, err error) {
    		t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/keras.py

      @tf.function(input_signature=[
          tf.TensorSpec([1, 28, 28, 1], tf.float32),
      ])
      def my_predict(self, x):
        return self.model(x)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/defun_export.py

              },
              outputs={'z': tensor_info_z},
              method_name='test_function'))
      }, None, None
    
    
    if __name__ == '__main__':
      common_v1.set_tf_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. src/os/exec_unix_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package os_test
    
    import (
    	"errors"
    	"internal/testenv"
    	"math"
    	. "os"
    	"runtime"
    	"syscall"
    	"testing"
    )
    
    func TestErrProcessDone(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/shapes_for_arguments.py

      @tf.function(input_signature=[tf.TensorSpec([], tf.float32)])
      def some_function(self, x):
        return x
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

                    "> $(OUTS)"
                ),
                tags = tags,
            )
    
            # The cc_test rule for the generated code.  To ensure that this works
            # reliably across build configurations, we must use tf_cc_test instead
            # of native.cc_test.  This is related to how we build
            # //tensorflow/core:lib -- see the note in
            # tensorflow/core/BUILD for more details.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/io/fs/format_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs_test
    
    import (
    	. "io/fs"
    	"testing"
    	"time"
    )
    
    // formatTest implements FileInfo to test FormatFileInfo,
    // and implements DirEntry to test FormatDirEntry.
    type formatTest struct {
    	name    string
    	size    int64
    	mode    FileMode
    	modTime time.Time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 17:59:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top