Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for Instant (0.3 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      if (!shaped_type) {
        return errors::Internal("Constant doesn't have a shape");
      }
      auto op = builder.create<tfl::ExternalConstOp>(
          loc, shaped_type, builder.getI32IntegerAttr(buffer_index));
      return op.getOperation();
    }
    
    // TODO(b/172664358): Creates a new op instead of reusing constant op.
    // Creates a constant op with "tfl.is_variable" attribute to represent stateful
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

       *                            8
       */
    
      // Constant matcher factory methods
    
      /**
       * Matches any character.
       *
       * @since 19.0 (since 1.0 as constant {@code ANY})
       */
      public static CharMatcher any() {
        return Any.INSTANCE;
      }
    
      /**
       * Matches no characters.
       *
       * @since 19.0 (since 1.0 as constant {@code NONE})
       */
      public static CharMatcher none() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    // Adds a dummy Const node to graph_out. The "constant" has the type of
    // data_type and the shape indicated in 'shape'. The dummy node is not a valid
    // Const node because it does not have any value defined, but this doesn't
    // matter because it will only be used subsequently for shape inference. (It
    // would be possible to add a switch statement over data_type to create a value
    // for the constant, but that would entail maintaining the logic as new types
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    	UntypedComplex = newType(TIDEAL)
    )
    
    // UntypedTypes maps from a constant.Kind to its untyped Type
    // representation.
    var UntypedTypes = [...]*Type{
    	constant.Bool:    UntypedBool,
    	constant.String:  UntypedString,
    	constant.Int:     UntypedInt,
    	constant.Float:   UntypedFloat,
    	constant.Complex: UntypedComplex,
    }
    
    // DefaultKinds maps from a constant.Kind to its default Kind.
    var DefaultKinds = [...]Kind{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output id1 = ops::Identity(root.WithOpName("id1"), sw.output_true);
    
      Output constant = ops::Const(root.WithOpName("constant"), 5);
      ops::Merge m0(root.WithOpName("m0"), {constant});
      ops::Merge m1(root.WithOpName("m0"), {constant});
      Output add = ops::Add(root.WithOpName("add"), m0.output, m1.output);
    
      root.graph()->AddControlEdge(id0.node(), m0.output.node());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    		return OpARM64NotLessEqualF
    	default:
    		panic("unreachable")
    	}
    }
    
    // evaluate an ARM64 op against a flags value
    // that is potentially constant; return 1 for true,
    // -1 for false, and 0 for not constant.
    func ccARM64Eval(op Op, flags *Value) int {
    	fop := flags.Op
    	if fop == OpARM64InvertFlags {
    		return -ccARM64Eval(op, flags.Args[0])
    	}
    	if fop != OpARM64FlagConstant {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Hex constant 0x80000001
    	MOVW $2147483649, R5            // 6405800060a50001 or 0600800038a00001
    	MOVD $2147483649, R5            // 6405800060a50001 or 0600800038a00001
    	// Hex constant 0xFFFFFFFF80000001
    	MOVD $-2147483647, R5           // 3ca0800060a50001 or 0603800038a00001
    	// Hex constant 0xFFFFFFFE00000002 (load of constant on < power10, pli on >= power10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    	// TODO: check if there are cases that matter where we have
    	// more than one len(s) for a slice. We could keep a list if necessary.
    	lens map[ID]*Value
    	caps map[ID]*Value
    
    	// zero is a zero-valued constant
    	zero *Value
    }
    
    // checkpointFact is an invalid value used for checkpointing
    // and restoring factsTable.
    var checkpointFact = fact{}
    var checkpointBound = limitFact{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Shifts by zero (may be inserted during multiplication strength reduction).
    ((SLD|SLW|SRD|SRW|SRAD|SRAW)const x [0]) => x
    
    // Convert constant subtracts to constant adds.
    (SUBconst [c] x) && c != -(1<<31) => (ADDconst [-c] x)
    (SUBWconst [c] x) => (ADDWconst [-int32(c)] x)
    
    // generic constant folding
    // TODO: more of this
    (ADDconst [c] (MOVDconst [d])) => (MOVDconst [int64(c)+d])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

        %cst_2 = "tfl.no_value"() {value = unit} : () -> none
        %cst_3 = arith.constant dense<1.0> : tensor<20x20xf32>
        %cst_7 = arith.constant dense<1.0> : tensor<20xf32>
        %cst_11 = arith.constant dense<1.0> : tensor<20x28xf32>
        %recurrent_input = arith.constant dense<1.0> : tensor<1x20xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top