Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for reasons (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      }
      func.return
      // expected-remark@above {{ID: 9}}
      // expected-remark@above {{Sinks: {8}}}
    }
    
    // -----
    
    // Tests that the pass adds control dependencies in nested regions with
    // tf_device.replicate
    
    func.func @with_replicate(
      // expected-remark@above {{ID: 12}}
      %arg0: tensor<*x!tf_type.resource<tensor<32xf32>>>,
      %arg1: tensor<*x!tf_type.resource<tensor<32xf32>>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    com.is
    edu.is
    gov.is
    org.is
    int.is
    
    // it : https://en.wikipedia.org/wiki/.it
    it
    gov.it
    edu.it
    // Reserved geo-names (regions and provinces):
    // https://www.nic.it/sites/default/files/archivio/docs/Regulation_assignation_v7.1.pdf
    // Regions
    abr.it
    abruzzo.it
    aosta-valley.it
    aostavalley.it
    bas.it
    basilicata.it
    cal.it
    calabria.it
    cam.it
    campania.it
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

          tf_executor.fetch %1#0 : tensor<?x28x28x?xbf16>
        }
        func.return %0 : tensor<?x28x28x?xbf16>
      }
    
      // Test shape invariant While only propagates operand handle types into
      // results and functions/regions.
      // CHECK-LABEL: func @while_shape_invariant_propagate
      // CHECK-SAME: ({{%.+}}: tensor<4xf32>, {{%.+}}: tensor<!tf_type.resource<tensor<4xf32>>>, {{%.+}}: tensor<!tf_type.resource<tensor<8xf32>>>, {{%.+}}: tensor<1xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

      }) : (tensor<i1>) -> (tensor<1xf32>)
      func.return %0 : tensor<1xf32>
    }
    
    func.func @if_then(%arg0: tensor<i1>, %arg1: tensor<1xf32>) -> tensor<1xf32> {
      // expected-error @+1 {{'tfl.if' op expected 2 regions}}
      %0 = "tfl.if"(%arg0) ({
        %1 = "tfl.sub"(%arg1, %arg1) {fused_activation_function = "NONE"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
        "tfl.yield"(%1) : (tensor<1xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    // which itself is a rotate (w.r.t. the length of the unit) of a sequence of ones.
    // special cases: 0 and -1 are not bitcon.
    // this function needs to run against virtually all the constants, so it needs to be fast.
    // for this reason, bitcon testing and bitcon encoding are separate functions.
    func isbitcon(x uint64) bool {
    	if x == 1<<64-1 || x == 0 {
    		return false
    	}
    	// determine the period and sign-extend a unit to 64 bits
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top