Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for striped (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          return op.emitOpError() << "requires begin, end and strides to have the "
                                     "same number of elements";
        }
      }
    
      // If strides are constants, verify that none of the element is zero.
      DenseIntElementsAttr strides;
      if (matchPattern(op.getStrides(), m_Constant(&strides))) {
        if (llvm::is_contained(strides.getValues<APInt>(), 0))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    			)
    			if err != nil {
    				cancel()
    				t.Fatalf("Failed to create framework for testing: %v", err)
    			}
    
    			tt.action(f)
    
    			// Stop the goroutine which records metrics and ensure it's stopped.
    			cancel()
    			<-recorder.IsStoppedCh
    			// Try to clean up the metrics buffer again in case it's not empty.
    			recorder.FlushMetrics()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    static String rightPad(String, int, String); public static String leftPad(String, int); public static String leftPad(String, int, String); public static String strip(String); public static String strip(String, String); public static String[] stripAll(String[]); public static String[] stripAll(String[], String); public static String stripEnd(String, String); public static String stripStart(String, String); public static String upperCase(String); public static String lowerCase(String); public static...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  4. src/net/http/server.go

    }
    
    // TrailerPrefix is a magic prefix for [ResponseWriter.Header] map keys
    // that, if present, signals that the map entry is actually for
    // the response trailers, and not the response headers. The prefix
    // is stripped after the ServeHTTP call finishes and the values are
    // sent in the trailers.
    //
    // This mechanism is intended only for trailers that are not known
    // prior to the headers being written. If the set of trailers is fixed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // the final element, not the entire path. That is, the
    // command with source in DIR/src/foo/quux is installed into
    // DIR/bin/quux, not DIR/bin/foo/quux. The "foo/" prefix is stripped
    // so that you can add DIR/bin to your PATH to get at the
    // installed commands. If the GOBIN environment variable is
    // set, commands are installed to the directory it names instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // Unsupported ksize
      %1 = "tf.AvgPool"(%arg0) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", ksize = [3, 3, 6, 1], padding = "VALID", strides = [1, 3, 1, 1]} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
      // Unsupported strides
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      ]> {
      let summary = "StridedSlice Op";
    
      let description = [{
        Return a strided slice from `input`.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, I32, I64, I8, UI8, UI32, QI8, QUI8, I1, I16, QI16, TFL_Quint8, TFL_Str]>:$input,
        TFL_I32Tensor:$begin,
        TFL_I32Tensor:$end,
        TFL_I32Tensor:$strides,
    
        I32Attr:$begin_mask,
        I32Attr:$end_mask,
        I32Attr:$ellipsis_mask,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top