Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 113 for _nodes (0.32 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // The cluster will be wrapped in a `tf_device.cluster` first and then by a
    // replicate.
    // TPUPartitionedInputV2 nodes would be inside the replicate but outside the
    // cluster.
    // TPUReplicatedInput and TPUReplicatedOutput nodes will be replaced by the
    // replicate operands and results.
    // CHECK-LABEL: func @replication_with_model_parallelism
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      TF_DeleteBuffer(graph_def);
    
      // Can add nodes to the imported graph without trouble.
      Add(feed, scalar, graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_DeleteGraph(graph);
      TF_DeleteStatus(s);
    }
    
    TEST(CAPI, ImportGraphDef_WithReturnOutputs) {
      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Create a graph with two nodes: x and 3
      Placeholder(graph, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

          mlir::ArrayAttr::get(
              context, {mlir::StringAttr::get(context, signature->signature_key)}));
    }
    
    // There are control nodes at each end of each control edge. For each of them,
    // we store the source vertices of the incoming edges (if any) and the control
    // node's output token. To improve testability, we use an ordered set for the
    // source vertices.
    struct ControlNodeDesc {
      std::set<int> incoming;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Improved scheduling performance when many nodes, and prefilter returns 1-2 nodes (e.g. daemonset)
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    			// the range operator is only allowed at the top of a for statement
    			p.errorExpected(x.Pos(), "expression")
    			x = &ast.BadExpr{x.Pos(), x.End()}
    		}
    	case *ast.BinaryExpr:
    	default:
    		// all other nodes are not proper expressions
    		p.errorExpected(x.Pos(), "expression")
    		x = &ast.BadExpr{x.Pos(), x.End()}
    	}
    	return x
    }
    
    // isTypeName reports whether x is a (qualified) TypeName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. hack/local-up-cluster.sh

        echo "${gate}" | ${SED} -e 's/\(.*\)=\(.*\)/  \1: \2/'
      done
    }
    
    function parse_eviction {
      # Convert from memory.available<100Mi,nodefs.available<10%,nodefs.inodesFree<5% to
      #   memory.available: "100Mi"
      #   nodefs.available: "10%"
      #   nodefs.inodesFree: "5%"
      for eviction in $(echo "$1" | tr ',' ' '); do
        echo "${eviction}" | ${SED} -e 's/</: \"/' | ${SED} -e 's/^/  /' | ${SED} -e 's/$/\"/'
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				'.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' +
    				'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';
    		}
    		// Correct IE 7 (shifts anchor nodes onhover)
    		if(/msie/.test(u) && parseInt(v, 10) == 7) {
    			is_ie7 = true;
    			css_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';
    		}
    		// correct ff2 lack of display:inline-block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    // maybeConcat implements incremental concatenation
    // of literal runes into string nodes. The parser calls this
    // before each push, so only the top fragment of the stack
    // might need processing. Since this is called before a push,
    // the topmost literal is no longer subject to operators like *
    // (Otherwise ab* would turn into (ab)*.)
    // If r >= 0 and there's a node left over, maybeConcat uses it
    // to push r with the given flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	ENOATTR         = syscall.Errno(0x70)
    	ENOBUFS         = syscall.Errno(0x4a)
    	ENOCONNECT      = syscall.Errno(0x32)
    	ENOCSI          = syscall.Errno(0x2b)
    	ENODATA         = syscall.Errno(0x7a)
    	ENODEV          = syscall.Errno(0x13)
    	ENOENT          = syscall.Errno(0x2)
    	ENOEXEC         = syscall.Errno(0x8)
    	ENOLCK          = syscall.Errno(0x31)
    	ENOLINK         = syscall.Errno(0x7e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	ENFILE          = syscall.Errno(0x17)
    	ENOANO          = syscall.Errno(0x35)
    	ENOBUFS         = syscall.Errno(0x84)
    	ENOCSI          = syscall.Errno(0x2b)
    	ENODATA         = syscall.Errno(0x3d)
    	ENODEV          = syscall.Errno(0x13)
    	ENOENT          = syscall.Errno(0x2)
    	ENOEXEC         = syscall.Errno(0x8)
    	ENOLCK          = syscall.Errno(0x2e)
    	ENOLINK         = syscall.Errno(0x43)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
Back to top