Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for proximate (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    // CHECK-LABEL: testGelu
    func.func @testGelu(%arg0: tensor<1x2x3x4x5xf32>) -> tensor<1x2x3x4x5xf32> {
      // CHECK: "tfl.gelu"(%arg0)
      %0 = "tfl.gelu"(%arg0) {approximate = false}: (tensor<1x2x3x4x5xf32>) -> tensor<1x2x3x4x5xf32>
      func.return %0 : tensor<1x2x3x4x5xf32>
    }
    
    // -----
    
    // test invalid GELU input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	// Envoy enforces a re2.max_program_size.error_level re2 program size is not the same as length,
    	// but it is always *larger* than length. Because goland does not have a way to evaluate the
    	// program size, we approximate by the length. To ensure that a program that is smaller than 1024
    	// length but larger than 1024 size does not enter the system, we program Envoy to allow very large
    	// regexs to avoid NACKs. See
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Computes GELU activation function element-wise.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, QI8, QUI8]>:$input,
        DefaultValuedOptionalAttr<BoolAttr, "false">:$approximate
      );
    
      let results = (outs TFL_TensorOf<[F32, QI8, QUI8]>:$output);
    
      let hasOptions = 1;
    }
    
    def TFL_DynamicUpdateSliceOp: TFL_Op<"dynamic_update_slice", [
        Pure,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top