Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for some_node (0.11 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

      Tensor tensor(data_type, TensorShape(dims));
      for (int i = 0; i < 2 * 3 * 4 * 5; ++i) {
        tensor.flat<int32>()(i) = i;
      }
    
      NodeDef node;
      auto builder = NodeDefBuilder("some_node", "Const")
                         .Attr("dtype", data_type)
                         .Attr("value", tensor);
      // Create a bad output shape attr.
      AttrValue shape_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/cover/testdata/test.go

    // the coverage processing has changed the line numbers, so we can't use runtime.Caller.
    
    package main
    
    import _ "unsafe" // for go:linkname
    
    //go:linkname some_name some_name
    var some_name int
    
    const anything = 1e9 // Just some unlikely value that means "we got here, don't care how often"
    
    func testAll() {
    	testSimple()
    	testBlockRun()
    	testIf()
    	testFor()
    	testRange()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

            matches("soN", "someName")
            matches("SN", "someName")
            matches("SN", "SomeName")
            matches("SN", "SomeNameWithExtraStuff")
            matches("so_n", "some_name")
            matches("so_n", "some_Name")
            matches("so_n_wi_ext", "some_Name_with_EXTRA")
            matches("so.n", "some.name")
            matches("so n", "some name")
            matches("ABC", "ABC")
            matches("a9N", "a9Name")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. staging/README.md

    package from the `k8s.io/client-go` repository, that import is resolved to
    `staging/src/k8s.io/client-go` relative to the project root:
    
    ```go
    // pkg/example/some_code.go
    package example
    
    import (
      "k8s.io/client-go/dynamic" // resolves to staging/src/k8s.io/client-go/dynamic
    )
    ```
    
    ## Creating a new repository in staging
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					});
    				}
    				return ret;
    			},
    			move_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {
    				if(!is_prepared) {
    					return this.prepare_move(obj, ref, position, function (p) {
    						this.move_node(p, false, false, is_copy, true, skip_check);
    					});
    				}
    				if(is_copy) {
    					prepared_move.cy = true;
    				}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

            %handle1 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "some_name", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
            // expected-remark@above {{ID: 0}}
            %handle2 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "some_name", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
Back to top