Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 489 for Tiller (0.52 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nhwc.mlir

                                 %arg2: tensor<256xf32>,          // batch_norm args
                                 %arg3: tensor<7x7x3x64xf32>,    // conv filter #0
                                 %arg4: tensor<1x1x64x256xf32>   // conv filter #1
                                ) -> tensor<?x256xf32> {
    
      // This is a simplified ResNet layer that gets input in NHWC format, converts
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //   OneHot(index, depth, on=1.0f, off=0.0f, axis=-1) * filter
    // With
    //   EmbeddingLookup(index, Transpose(filter))
    //
    // OneHot with on=1 off=0 axis=-1, where `index` is a single element tensor,
    // creates a tensor of size depth, and all values are 0, except for the element
    // at `index`, which is 1. Multiplying such a tensor with a 2D filter esentially
    // returns the single column in filter as a 1D tensor. If the input has multiple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/swift-static-library-task-graph.dot

    digraph swiftStaticLibraryTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugSwift -> createDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseSwift -> createRelease -> assembleRelease [dir=back]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the request is allowed or not
      // +optional
      optional SubjectAccessReviewStatus status = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1/generated.proto

      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the request is allowed or not
      // +optional
      optional SubjectAccessReviewStatus status = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/xcode-task-graph.dot

    digraph xcodeTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=3.3, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      subgraph cluster_cppApplication {
        label = "C++ Application Plugin"
        color = black
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/swift-library-variant-task-graph.dot

    digraph swiftLibraryVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileVariantSwift -> {linkVariant, createVariant} -> assembleVariant [dir=back, style=dashed]
      compileVariantSwift[label=<compile<i>Variant</i>Swift>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/cpp-library-variant-task-graph.dot

    digraph cppLibraryVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileVariantCpp -> {linkVariant, createVariant} -> assembleVariant [dir=back, style=dashed]
      compileVariantCpp[label=<compile<i>Variant</i>Cpp>]
      linkVariant[label=<link<i>Variant</i>>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. docs/batch-jobs/README.md

    	#   accessKey: ACCESS-KEY
    	#   secretKey: SECRET-KEY
    	#   sessionToken: SESSION-TOKEN # Available when rotating credentials are used
    
      # optional flags based filtering criteria
      # for all source objects
      flags:
    	filter:
    	  newerThan: "7d" # match objects newer than this value (e.g. 7d10h31s)
    	  olderThan: "7d" # match objects older than this value (e.g. 7d10h31s)
    	  createdAfter: "date" # match objects created after "date"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. src/go/doc/testdata/generics.1.golden

    	// Constraint is a constraint interface with two type parameters. 
    	type Constraint[P, Q interface{ string | ~int | Type[int] }] interface {
    		~int | ~byte | Type[string]
    		M() P
    	}
    
    	// NewEmbeddings demonstrates how we filter the new embedded ...
    	type NewEmbeddings interface {
    		string	// should not be filtered
    		int16
    		struct{ f int }
    		~struct{ f int }
    		*struct{ f int }
    		struct{ f int } | ~struct{ f int }
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top