Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for 416 (0.12 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize.mlir

          lhs_contracting_dimensions = [4, 1, 6],
          rhs_contracting_dimensions = [6, 0, 4]
      >} : (tensor<1x9x2x3x8x4x10xf32>, tensor<9x2x1x5x10x5x8x7xf32>) -> tensor<1x2x3x4x5x5x7xf32>
      %1 = "mhlo.dot_general"(%arg1, %arg2) {
        dot_dimension_numbers = #mhlo.dot<
          lhs_batching_dimensions = [0, 2],
          rhs_batching_dimensions = [2, 1],
          lhs_contracting_dimensions = [4, 1, 6],
          rhs_contracting_dimensions = [6, 0, 4]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go

    	SYS_TIMERFD_SETTIME64            = 411
    	SYS_UTIMENSAT_TIME64             = 412
    	SYS_PSELECT6_TIME64              = 413
    	SYS_PPOLL_TIME64                 = 414
    	SYS_IO_PGETEVENTS_TIME64         = 416
    	SYS_RECVMMSG_TIME64              = 417
    	SYS_MQ_TIMEDSEND_TIME64          = 418
    	SYS_MQ_TIMEDRECEIVE_TIME64       = 419
    	SYS_SEMTIMEDOP_TIME64            = 420
    	SYS_RT_SIGTIMEDWAIT_TIME64       = 421
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    	SYS_TIMERFD_SETTIME64            = 411
    	SYS_UTIMENSAT_TIME64             = 412
    	SYS_PSELECT6_TIME64              = 413
    	SYS_PPOLL_TIME64                 = 414
    	SYS_IO_PGETEVENTS_TIME64         = 416
    	SYS_RECVMMSG_TIME64              = 417
    	SYS_MQ_TIMEDSEND_TIME64          = 418
    	SYS_MQ_TIMEDRECEIVE_TIME64       = 419
    	SYS_SEMTIMEDOP_TIME64            = 420
    	SYS_RT_SIGTIMEDWAIT_TIME64       = 421
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go

    	SYS_TIMERFD_SETTIME64            = 411
    	SYS_UTIMENSAT_TIME64             = 412
    	SYS_PSELECT6_TIME64              = 413
    	SYS_PPOLL_TIME64                 = 414
    	SYS_IO_PGETEVENTS_TIME64         = 416
    	SYS_RECVMMSG_TIME64              = 417
    	SYS_MQ_TIMEDSEND_TIME64          = 418
    	SYS_MQ_TIMEDRECEIVE_TIME64       = 419
    	SYS_SEMTIMEDOP_TIME64            = 420
    	SYS_RT_SIGTIMEDWAIT_TIME64       = 421
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/additional-responses.md

                        }
                    }
                }
            }
        }
    }
    ```
    
    The schemas are referenced to another place inside the OpenAPI schema:
    
    ```JSON hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

                              ShapeUtil::MakeScalarShape(xla::F32), "y");
        Add(arg0, arg1);
        TF_ASSERT_OK_AND_ASSIGN(to_apply, sub_builder->Build());
      }
      auto x = Parameter(&builder, 0, ShapeUtil::MakeShape(xla::F32, {4, 16}), "x");
      ReplicaGroup group;
      group.add_replica_ids(0);
      group.add_replica_ids(1);
      XlaOp reduce_scatter =
          ReduceScatter(x, to_apply, /*scatter_dimension=*/1, /*shard_count=*/2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. docs/fr/docs/advanced/additional-responses.md

                        }
                    }
                }
            }
        }
    }
    ```
    
    Les schémas sont référencés à un autre endroit du modèle OpenAPI :
    
    ```JSON hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_messages_test.go

    	serverHelloEmptySCT = append(serverHelloEmptySCT, serverHelloBytes[i+4:]...)
    
    	// Update the handshake message length.
    	serverHelloEmptySCT[1] = byte((len(serverHelloEmptySCT) - 4) >> 16)
    	serverHelloEmptySCT[2] = byte((len(serverHelloEmptySCT) - 4) >> 8)
    	serverHelloEmptySCT[3] = byte(len(serverHelloEmptySCT) - 4)
    
    	// Update the extensions length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/time/zoneinfo_read.go

    		skip := n[NTime]*4 +
    			n[NTime] +
    			n[NZone]*6 +
    			n[NChar] +
    			n[NLeap]*8 +
    			n[NStdWall] +
    			n[NUTCLocal]
    		// Skip the version 2 header that we just read.
    		skip += 4 + 16
    		d.read(skip)
    
    		is64 = true
    
    		// Read the counts again, they can differ.
    		for i := 0; i < 6; i++ {
    			nn, ok := d.big4()
    			if !ok {
    				return nil, errBadData
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/net/textproto/reader.go

    		strs = make([]string, hint)
    	}
    
    	m := make(MIMEHeader, hint)
    
    	// Account for 400 bytes of overhead for the MIMEHeader, plus 200 bytes per entry.
    	// Benchmarking map creation as of go1.20, a one-entry MIMEHeader is 416 bytes and large
    	// MIMEHeaders average about 200 bytes per entry.
    	maxMemory -= 400
    	const mapEntryOverhead = 200
    
    	// The first line cannot start with a leading space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top