Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for Const8 (0.19 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Xor(64|32|16|8) x x) => (Const(64|32|16|8) [0])
    (Xor(64|32|16|8) (Const(64|32|16|8) [0]) x) => x
    (Xor(64|32|16|8) (Com(64|32|16|8)    x)  x) => (Const(64|32|16|8) [-1])
    
    (Add(64|32|16|8) (Const(64|32|16|8) [0]) x) => x
    (Sub(64|32|16|8) x x) => (Const(64|32|16|8) [0])
    (Mul(64|32|16|8) (Const(64|32|16|8) [0]) _) => (Const(64|32|16|8) [0])
    (Select0 (Mul(64|32)uover (Const(64|32) [0]) x)) => (Const(64|32) [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteWasm.go

    	for {
    		c := auxIntToInt32(v.AuxInt)
    		v.reset(OpWasmI64Const)
    		v.AuxInt = int64ToAuxInt(int64(c))
    		return true
    	}
    }
    func rewriteValueWasm_OpConst8(v *Value) bool {
    	// match: (Const8 [c])
    	// result: (I64Const [int64(c)])
    	for {
    		c := auxIntToInt8(v.AuxInt)
    		v.reset(OpWasmI64Const)
    		v.AuxInt = int64ToAuxInt(int64(c))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	for {
    		val := auxIntToInt32(v.AuxInt)
    		v.reset(OpMIPSMOVWconst)
    		v.AuxInt = int32ToAuxInt(int32(val))
    		return true
    	}
    }
    func rewriteValueMIPS_OpConst8(v *Value) bool {
    	// match: (Const8 [val])
    	// result: (MOVWconst [int32(val)])
    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpMIPSMOVWconst)
    		v.AuxInt = int32ToAuxInt(int32(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	for {
    		val := auxIntToFloat64(v.AuxInt)
    		v.reset(OpLOONG64MOVDconst)
    		v.AuxInt = float64ToAuxInt(float64(val))
    		return true
    	}
    }
    func rewriteValueLOONG64_OpConst8(v *Value) bool {
    	// match: (Const8 [val])
    	// result: (MOVVconst [int64(val)])
    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	for {
    		val := auxIntToFloat64(v.AuxInt)
    		v.reset(OpMIPS64MOVDconst)
    		v.AuxInt = float64ToAuxInt(float64(val))
    		return true
    	}
    }
    func rewriteValueMIPS64_OpConst8(v *Value) bool {
    	// match: (Const8 [val])
    	// result: (MOVVconst [int64(val)])
    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v0.AuxInt = int64ToAuxInt(int64(math.Float64bits(val)))
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueRISCV64_OpConst8(v *Value) bool {
    	// match: (Const8 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK-DAG: %[[CONST1:.*]] = "tf.Const"() <{value = dense<[0, 3, 1, 2]> : tensor<4xi32>}>
      // CHECK-DAG: %[[CONST2:.*]] = "tf.Const"() <{value = dense<[0, 2, 3, 1]> : tensor<4xi32>}>
      // CHECK: %[[TRANS1:.*]] = "tf.Transpose"(%arg0, %[[CONST1]]) : (tensor<1x4x4x8xf32>, tensor<4xi32>) -> tensor<1x8x4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  8. api/go1.3.txt

    pkg debug/macho, const CpuArm = 12
    pkg debug/macho, const CpuArm Cpu
    pkg debug/macho, const CpuPpc = 18
    pkg debug/macho, const CpuPpc Cpu
    pkg debug/macho, const CpuPpc64 = 16777234
    pkg debug/macho, const CpuPpc64 Cpu
    pkg debug/macho, const MagicFat = 3405691582
    pkg debug/macho, const MagicFat uint32
    pkg debug/macho, const TypeBundle = 8
    pkg debug/macho, const TypeBundle Type
    pkg debug/macho, const TypeDylib = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

      void operator=(const ValueArray17& other);
    
      const T1 v1_;
      const T2 v2_;
      const T3 v3_;
      const T4 v4_;
      const T5 v5_;
      const T6 v6_;
      const T7 v7_;
      const T8 v8_;
      const T9 v9_;
      const T10 v10_;
      const T11 v11_;
      const T12 v12_;
      const T13 v13_;
      const T14 v14_;
      const T15 v15_;
      const T16 v16_;
      const T17 v17_;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

    }
    
    void TF_SetAttrString(TF_OperationDescription* desc, const char* attr_name,
                          const void* value, size_t length) {
      tensorflow::StringPiece s(static_cast<const char*>(value), length);
      desc->node_builder.Attr(attr_name, s);
    }
    
    void TF_SetAttrStringList(TF_OperationDescription* desc, const char* attr_name,
                              const void* const* values, const size_t* lengths,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top