Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 8,920 for FusedN (0.17 sec)

  1. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

        auto input_tfr_type =
            signature.getFunctionType().getInputs()[operand.index()];
    
        // There are three cases for the preceding input_op:
    
        // 1. The preceding op can be a tfr.cast op, which will be fused to the
        // current op, so the result op has input with tensor type.
        if (auto cast_op = dyn_cast_or_null<CastOp>(input_op)) {
          Value input_to_cast = CastToNonDerivedType(rewriter, call_op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/tests/import_quant_stats.mlir

    func.func @import_stats_skip(%arg0: tensor<4xf32>, %cst: tensor<i32>) -> (tensor<2xf32>,tensor<2xf32>) {
      %0:2 = "tfl.split"(%cst, %arg0) {num_splits = 2 : i32} : (tensor<i32>, tensor<4xf32>) -> (tensor<2xf32>, tensor<2xf32>)
        loc(fused["skip1", "skip2.cc":10:8, callsite("op" at "skip3.cc":10:8)])
      func.return %0#0, %0#1 : tensor<2xf32>, tensor<2xf32>
    
    // CHECK-NEXT: "tfl.split"
    // CHECK-NEXT: return
    }
    
    // CHECK-LABEL: import_stats_name
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

                                int& filter_index);
    
      // Preprocesses the constants by doing the following:
      //   - Duplicates constants if it is used by multiple ops. For example, if a
      //     constant is used by multiple ops as a bias, duplicate constants and
      //     let each op assign its own quantization parameter for bias.
      //   - Adds all the non-bias constants (weights) to a set for looking up
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. test/fixedbugs/issue4463.go

    	append(a, 0)			// ERROR "not used"
    	cap(a)				// ERROR "not used"
    	complex(1, 2)			// ERROR "not used"
    	imag(1i)			// ERROR "not used"
    	len(a)				// ERROR "not used"
    	make([]int, 10)			// ERROR "not used"
    	new(int)			// ERROR "not used"
    	real(1i)			// ERROR "not used"
    	unsafe.Alignof(a)		// ERROR "not used"
    	unsafe.Offsetof(s.f)		// ERROR "not used"
    	unsafe.Sizeof(a)		// ERROR "not used"
    
    	close(c)
    	copy(a, a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue4654.go

    	int(0) // ERROR "int\(0\) evaluated but not used|is not used"
    	string([]byte("abc")) // ERROR "string\(.*\) evaluated but not used|is not used"
    
    	append(x, 1) // ERROR "not used"
    	cap(x) // ERROR "not used"
    	complex(1, 2) // ERROR "not used"
    	complex(f, 1) // ERROR "not used"
    	imag(1i) // ERROR "not used"
    	imag(c) // ERROR "not used"
    	len(x) // ERROR "not used"
    	make([]int, 1) // ERROR "not used"
    	make(chan bool) // ERROR "not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue5957.dir/c.go

    import (
    	"./a" // ERROR "imported and not used: \x22test/a\x22 as surprise|imported and not used: surprise|\x22test/a\x22 imported as surprise and not used"
    	"./b" // ERROR "imported and not used: \x22test/b\x22 as surprise2|imported and not used: surprise2|\x22test/b\x22 imported as surprise2 and not used"
    	b "./b" // ERROR "imported and not used: \x22test/b\x22$|imported and not used: surprise2|\x22test/b\x22 imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 762 bytes
    - Viewed (0)
  7. test/import4.dir/import4.go

    // Verify that various kinds of "imported and not used"
    // errors are caught by the compiler.
    // Does not compile.
    
    package main
    
    // standard
    import "fmt"	// ERROR "imported and not used.*fmt|\x22fmt\x22 imported and not used"
    
    // renamed
    import X "math"	// ERROR "imported and not used.*math|\x22math\x22 imported as X and not used"
    
    // import dot
    import . "bufio"	// ERROR "imported and not used.*bufio|imported and not used"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 877 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_quantization_unit_loc.mlir

      %1 = "tf.Conv2D"(%0, %cst) {data_format = "NHWC", dilations = [1, 1, 1, 1], padding = "SAME", strides = [1, 1, 2, 1]}
           : (tensor<1x3x4x3xbf16>, tensor<2x3x3x2xbf16>) -> tensor<1x3x2x2xbf16> loc(fused["Conv2D:", "Model/conv2d"])
      %2 = "tf.Cast"(%1) {Truncate = false} : (tensor<1x3x2x2xbf16>) -> tensor<1x3x2x2xf32>
      %3 = "tf.IdentityN"(%2) {device = ""} : (tensor<1x3x2x2xf32>) -> tensor<1x3x2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 02:39:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/image/png/testdata/pngsuite/README.original

     Filter 1 was used 1 times
     Filter 4 was used 31 times
    Testing basn4a16.png: PASS (64 zero samples)
     Filter 0 was used 1 times
     Filter 1 was used 2 times
     Filter 2 was used 1 times
     Filter 4 was used 28 times
    Testing basn6a08.png: PASS (160 zero samples)
     Filter 1 was used 1 times
     Filter 4 was used 31 times
    Testing basn6a16.png: PASS (1072 zero samples)
     Filter 1 was used 4 times
     Filter 4 was used 28 times
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.7K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/errors.go

    	c1 // ERROR "c1 (untyped int constant 991) is not used"
    	c2 // ERROR "c2 (constant 0.5 of type float32) is not used"
    	c1 /* ERROR "c1 + c2 (constant 991.5 of type float32) is not used" */ + c2
    	c3 // ERROR `c3 (untyped string constant "foo") is not used`
    
    	// variables
    	x // ERROR "x (variable of type int) is not used"
    
    	// values
    	nil // ERROR "nil is not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top